diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/display-list/1413073-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/display-list/1413073-ref.html')
-rw-r--r-- | layout/reftests/display-list/1413073-ref.html | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/layout/reftests/display-list/1413073-ref.html b/layout/reftests/display-list/1413073-ref.html new file mode 100644 index 0000000000..eac0fd7bf4 --- /dev/null +++ b/layout/reftests/display-list/1413073-ref.html @@ -0,0 +1,54 @@ +<!DOCTYPE html> +<html lang="en"> +<head> +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> +<meta charset="utf-8"> +<title>The ASR for the opacity item is the root scroll frame instead of the subframe.</title> + +<style> + +.outer { + /* avoid event regions messing with our demonstration */ + pointer-events: none; + /* make sure the .outer opacity item has the root scroll frame as its ASR */ + background: rgba(0, 0, 0, 0.1); +} + +.opacity { + opacity: 0.8; +} + +.scrollFrameWrapper { + /* clips off .scrollFrame's scrollbar */ + margin: 100px; + overflow: hidden; +} + +.scrollFrame { + height: 300px; + margin-right: -20px; + padding-right: 20px; + overflow: hidden; +} + +.scrolledContents { + height: 1000px; + width: 200px; + border: 5px solid black; + pointer-events: auto; +} + +</style> + +</head><body> + +<div class="opacity outer"> + <div class="opacity inner"> + <div class="scrollFrameWrapper"> + <div class="scrollFrame"> + <div class="scrolledContents"></div> + </div> + </div> + </div> +</div> +</body></html> |