Index: LayoutTests/fast/css/invalidation/fullscreen.html |
diff --git a/LayoutTests/fast/css/invalidation/fullscreen.html b/LayoutTests/fast/css/invalidation/fullscreen.html |
index bae172654a722be05c7dbad2c4f0b23806cee89a..2571d065054c91f07e44eeacd17f649be44d6035 100644 |
--- a/LayoutTests/fast/css/invalidation/fullscreen.html |
+++ b/LayoutTests/fast/css/invalidation/fullscreen.html |
@@ -1,13 +1,12 @@ |
<!DOCTYPE html> |
<script src="../../../resources/js-test.js"></script> |
<style> |
-#full, #ancestor, #doc { |
+#full, #ancestor { |
background-color: red; |
} |
.t1 #full:-webkit-full-screen, |
-.t2 #ancestor:-webkit-full-screen-ancestor, |
-.t3 #doc:-webkit-full-screen-document { |
+.t2 #ancestor:-webkit-full-screen-ancestor { |
background-color: green; |
} |
</style> |
@@ -16,9 +15,6 @@ |
<div id="full"> |
<div></div> |
</div> |
- <div id="doc"> |
- <div></div> |
- </div> |
<div></div> |
</div> |
<div></div> |
@@ -48,13 +44,6 @@ function runTests() { |
shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2"); |
shouldBe("getComputedStyle(ancestor).backgroundColor", "green"); |
- shouldBe("getComputedStyle(doc).backgroundColor", "red"); |
- testRoot.offsetTop; // force recalc |
- testRoot.className += " t3"; |
- if (window.internals) |
- shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2"); |
- shouldBe("getComputedStyle(doc).backgroundColor", "green"); |
- |
finishJSTest(); |
} |