[Bug 18943] New: Suggested test from live DOM viewer: <!DOCTYPE html> <style> .fixed { position:fixed; } .overlayA { background-color: rgba(255, 0, 0, 0.8); position: absolute; top: 0px; z-index: 1; } .overlayB { background-color: rgba(0, 255, 0, 0.8); position: absolute;

https://www.w3.org/Bugs/Public/show_bug.cgi?id=18943

           Summary: Suggested test from live DOM viewer: <!DOCTYPE html>
                    <style> .fixed { position:fixed; } .overlayA {
                    background-color: rgba(255, 0, 0, 0.8); position:
                    absolute; top: 0px; z-index: 1; } .overlayB {
                    background-color: rgba(0, 255, 0, 0.8); position:
                    absolute;
           Product: HTML WG
           Version: unspecified
          Platform: Other
        OS/Version: other
            Status: NEW
          Severity: normal
          Priority: P3
         Component: testsuite
        AssignedTo: dave.null@w3.org
        ReportedBy: contributor@whatwg.org
         QAContact: public-html-bugzilla@w3.org
                CC: mike@w3.org, public-html-wg-issue-tracking@w3.org


<!DOCTYPE html>
<style>
.fixed {
position:fixed;
}
.overlayA {
background-color: rgba(255, 0, 0, 0.8);
position: absolute;
top: 0px;
z-index: 1;
}
.overlayB {
background-color: rgba(0, 255, 0, 0.8);
position: absolute;
top: 30px;
z-index: 3;
}
.content {
background-color: rgba(0, 0, 255, 0.8);
position: absolute;
z-index: 2;
}
</style>
<div class="fixed">
  <div class="overlayA">overlay_a</div>
  <div class="overlayB">overlay_b</div>
</div>
<div class="content">content<br>goes<br>here</div>

Posted from: 93.186.23.243
User agent: BlackBerry8520/5.0.0.681 Profile/MIDP-2.1 Configuration/CLDC-1.1
VendorID/142
Referer:

-- 
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Thursday, 20 September 2012 22:17:49 UTC