forked from mirrors/gecko-dev
Automatic update from web-platform-tests
Don't render top layer elements in non-renderable subtrees
In [1] we started rendering modal dialog elements even if they were in
non-renderable subtrees. In [2] this was overturned by the other
browsers, so this patch stops rendering them again.
[1] https://bugs.webkit.org/attachment.cgi?id=181812&action=review
[2] b64788f3cb
Fixed: 1301716
Change-Id: I16b7eaf867848d144a7eab743e8ce0af416ce49c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3646687
Commit-Queue: Joey Arhar <jarhar@chromium.org>
Reviewed-by: Mason Freed <masonf@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1016932}
--
wpt-commits: fd8aeb1bb2eb33bc43f8a5bbc682b0cff6075dfe
wpt-pr: 34169
14 lines
180 B
HTML
14 lines
180 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body {
|
|
background: blue;
|
|
margin: 0;
|
|
}
|
|
div {
|
|
position: fixed;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
<div></div>
|