summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/CSS2/floats/hit-test-floats-004.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/floats/hit-test-floats-004.html')
-rw-r--r--testing/web-platform/tests/css/CSS2/floats/hit-test-floats-004.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/floats/hit-test-floats-004.html b/testing/web-platform/tests/css/CSS2/floats/hit-test-floats-004.html
new file mode 100644
index 0000000000..1bed4c464d
--- /dev/null
+++ b/testing/web-platform/tests/css/CSS2/floats/hit-test-floats-004.html
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
+<link rel="help" href="https://www.w3.org/TR/CSS22/visuren.html#floats">
+<link rel="help" href="https://www.w3.org/TR/CSS22/zindex.html">
+<div id="error" style="overflow:hidden; width:100px; height:100px;"></div>
+<div style="margin-top:-100px; overflow:hidden; width:100px; height:100px;">
+ <div id="target" style="float:left; width:100px; height:100px;"></div>
+</div>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+ test(()=> {
+ var elm = document.elementFromPoint(50, 50);
+ assert_equals(elm.id, "target");
+ }, "Miss float below something else");
+</script>