diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/reftests/bugs/552334-1.html | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/bugs/552334-1.html')
-rw-r--r-- | layout/reftests/bugs/552334-1.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/layout/reftests/bugs/552334-1.html b/layout/reftests/bugs/552334-1.html new file mode 100644 index 000000000..66f426e09 --- /dev/null +++ b/layout/reftests/bugs/552334-1.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html> + <head> + <style> + div { position: absolute; top: 0; left: 0; width: 100px; height: 100px; } + div.offset { left: 100px; } + div.offset2 { left: 200px; } + </style> + </head> + <body> + <!-- Make sure the difference of the two z-index values overflows a 32-bit + signed int. So set the positive one to 2^30 + 1 and the negative one to + -(2^30 + 1). Then the difference is 2^31 + 2 which is negative when + treated as a 32-bit signed int. --> + <div style="background: green; z-index: 1073741825"></div> + <div style="background: red; z-index: -1073741825"></div> + <!-- Test clamping on the high end by setting the high z-index to + 2^32 + 1 --> + <div class="offset" style="background: green; z-index: 4294967297"></div> + <div class="offset" style="background: red; z-index: 2"></div> + <!-- Test clamping on the low end by setting the low z-index to + -(2^32 + 1) --> + <div class="offset2" style="background: green; z-index: -2"></div> + <div class="offset2" style="background: red; z-index: -4294967297"></div> + </body> +</html> |