Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Unified Diff: LayoutTests/fast/css/invalidation/fullscreen.html

Issue 1233503003: Remove the :-webkit-full-screen-document pseudo class (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/css/invalidation/fullscreen-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « no previous file | LayoutTests/fast/css/invalidation/fullscreen-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698