diff options
Diffstat (limited to 'testing/web-platform/tests/html/semantics/popovers/popover-appearance-ref.tentative.html')
-rw-r--r-- | testing/web-platform/tests/html/semantics/popovers/popover-appearance-ref.tentative.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/semantics/popovers/popover-appearance-ref.tentative.html b/testing/web-platform/tests/html/semantics/popovers/popover-appearance-ref.tentative.html new file mode 100644 index 0000000000..7ceca94559 --- /dev/null +++ b/testing/web-platform/tests/html/semantics/popovers/popover-appearance-ref.tentative.html @@ -0,0 +1,18 @@ +<!DOCTYPE html> +<meta charset="utf-8" /> +<title>Popover element appearance</title> +<link rel="stylesheet" href="resources/popover-styles.css"> + +<style> +.fake-popover {top: 100px; bottom: auto;} +#blank {left: -300px;} +#auto {left: -100px;} +#manual {left: 100px;} +#invalid {left: 300px;} +</style> + +<p>There should be four popovers with similar appearance.</p> +<div class="fake-popover" id=blank>Blank</div> +<div class="fake-popover" id=auto>Auto</div> +<div class="fake-popover" id=manual>Manual</div> +<div class="fake-popover" id=invalid>Invalid</div> |