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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/sticky/parsing-position-sticky.html

Issue 2927453004: Upstream position: sticky parsing test to WPT (Closed)
Patch Set: Rebase Created 3 years, 6 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 | « third_party/WebKit/LayoutTests/external/wpt/css/css-position-3/position-sticky-parsing.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/css/sticky/parsing-position-sticky.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/sticky/parsing-position-sticky.html b/third_party/WebKit/LayoutTests/fast/css/sticky/parsing-position-sticky.html
deleted file mode 100644
index a645697ec11d33d864f0220349208f44d79aeeed..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/css/sticky/parsing-position-sticky.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<body>
-<script src="../../../resources/js-test.js"></script>
-<script>
-description("This tests checks that the sticky value for position parses correctly.");
-
-if (window.internals) {
- internals.settings.setCSSStickyPositionEnabled(true);
-}
-
-function test(value)
-{
- var div = document.createElement("div");
- div.setAttribute("style", value);
- document.body.appendChild(div);
-
- var result = div.style.getPropertyValue("position");
- document.body.removeChild(div);
- return result;
-}
-
-shouldBe('test("position: sticky;")', '"sticky"');
-</script>
-</body>
« no previous file with comments | « third_party/WebKit/LayoutTests/external/wpt/css/css-position-3/position-sticky-parsing.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698