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

Unified Diff: LayoutTests/fast/exclusions/parsing/script-tests/parsing-wrap-flow.js

Issue 359023002: Remove CSS Exclusions leftovers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 6 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
Index: LayoutTests/fast/exclusions/parsing/script-tests/parsing-wrap-flow.js
diff --git a/LayoutTests/fast/exclusions/parsing/script-tests/parsing-wrap-flow.js b/LayoutTests/fast/exclusions/parsing/script-tests/parsing-wrap-flow.js
deleted file mode 100644
index 64b68d64d1699e64693741c3f8cd7345f251e4cf..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/exclusions/parsing/script-tests/parsing-wrap-flow.js
+++ /dev/null
@@ -1,37 +0,0 @@
-description('Test parsing of the CSS wrap-flow property.');
-
-if (window.internals)
- window.internals.settings.setCSSExclusionsEnabled(true);
-
-// The test functions and globals used here are defined parsing-test-utils.js.
-
-applyToEachArglist(
- testExclusionSpecifiedProperty,
- [// [property, value, expectedValue]
- ["-webkit-wrap-flow", "auto", "auto"],
- ["-webkit-wrap-flow", "both", "both"],
- ["-webkit-wrap-flow", "start", "start"],
- ["-webkit-wrap-flow", "end", "end"],
- ["-webkit-wrap-flow", "maximum", "maximum"],
- ["-webkit-wrap-flow", "clear", "clear"],
- ["-webkit-wrap-flow", ";", ""],
- ["-webkit-wrap-flow", "5", ""],
- ["-webkit-wrap-flow", "-1.2", ""],
- ["-webkit-wrap-flow", "\'string\'", ""]]
-);
-
-applyToEachArglist(
- testExclusionComputedProperty,
- [// [property, value, expectedValue]
- ["-webkit-wrap-flow", "auto", "auto"],
- ["-webkit-wrap-flow", "5", "auto"],
- ["-webkit-wrap-flow", "\'string\'", "auto"]]
-);
-
-applyToEachArglist(
- testNotInheritedExclusionChildProperty,
- [// [property, parentValue, childValue, expectedChildValue]
- ["-webkit-wrap-flow", "auto", "start", "start"],
- ["-webkit-wrap-flow", "end", "auto", "auto"],
- ["-webkit-wrap-flow", "both", "clear", "clear"]]
-);

Powered by Google App Engine
This is Rietveld 408576698