Chromium Code Reviews| Index: LayoutTests/fullscreen/rendering/style-defaults-root.html |
| diff --git a/LayoutTests/fullscreen/rendering/style-defaults-root.html b/LayoutTests/fullscreen/rendering/style-defaults-root.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c81bc72f14576dbc93ff9196fe715206500197e3 |
| --- /dev/null |
| +++ b/LayoutTests/fullscreen/rendering/style-defaults-root.html |
| @@ -0,0 +1,48 @@ |
| +<!DOCTYPE html> |
| +<title>User-agent level style sheet defaults for the :root element</title> |
| +<script src="../../resources/testharness.js"></script> |
| +<script src="../../resources/testharnessreport.js"></script> |
| +<script src="../trusted-event.js"></script> |
| +<style> |
| +:root { |
| + /* Set properties which would otherwise match the UA style sheet. */ |
| + margin: 10px; |
| + min-width: 50%; |
| + max-width: 50%; |
| + min-height: 50%; |
| + max-height: 50%; |
| + transform: translate(0, 0); |
| +} |
| +</style> |
| +<div id="log"></div> |
| +<script> |
| +async_test(function() |
| +{ |
| + var root = document.documentElement; |
| + assert_true(root.matches(":root")); |
| + |
| + document.addEventListener("fullscreenchange", this.step_func_done(function() |
| + { |
| + var style = getComputedStyle(root); |
| + // No properties should match the UA style sheet. |
|
Julien - ping for review
2015/03/04 01:07:37
I have no clue what this test is trying to do, nor
philipj_slow
2015/03/04 07:15:28
It's to verify that the :not(:root) bit is in the
Julien - ping for review
2015/03/04 17:50:22
Probably. I don't have a strong opinion on that ap
|
| + assert_not_equals(style.position, "fixed"); |
| + assert_not_equals(style.top, "0px"); |
| + assert_not_equals(style.right, "0px"); |
| + assert_not_equals(style.bottom, "0px"); |
| + assert_not_equals(style.left, "0px"); |
| + assert_not_equals(style.margin, "0px"); |
| + assert_not_equals(style.boxSizing, "border-box"); |
| + assert_not_equals(style.minWidth, "0px"); |
| + assert_not_equals(style.maxWidth, "none"); |
| + assert_not_equals(style.minHeight, "0px"); |
| + assert_not_equals(style.maxHeight, "none"); |
| + assert_equals(style.width, window.innerWidth / 2 + "px"); |
| + assert_equals(style.height, window.innerHeight / 2 + "px"); |
| + assert_not_equals(style.objectFit, "contain"); |
| + assert_not_equals(style.flex, "0 0 auto"); |
| + assert_not_equals(style.transform, "none"); |
| + })); |
| + |
| + trusted_request(root, root); |
| +}); |
| +</script> |