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

Unified Diff: LayoutTests/fast/exclusions/parsing/script-tests/parsing-wrap-through.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-through.js
diff --git a/LayoutTests/fast/exclusions/parsing/script-tests/parsing-wrap-through.js b/LayoutTests/fast/exclusions/parsing/script-tests/parsing-wrap-through.js
deleted file mode 100644
index 31586fdae948f3198052d86960e4b8f93a5eeeb2..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/exclusions/parsing/script-tests/parsing-wrap-through.js
+++ /dev/null
@@ -1,32 +0,0 @@
-description('Test parsing of the CSS wrap-through 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-through", "wrap", "wrap"],
- ["-webkit-wrap-through", "none", "none"],
- ["-webkit-wrap-through", ";", ""],
- ["-webkit-wrap-through", "5", ""],
- ["-webkit-wrap-through", "-1.2", ""],
- ["-webkit-wrap-through", "\'string\'", ""]]
-);
-
-applyToEachArglist(
- testExclusionComputedProperty,
- [// [property, value, expectedValue]
- ["-webkit-wrap-through", "wrap", "wrap"],
- ["-webkit-wrap-through", "5", "wrap"],
- ["-webkit-wrap-through", "\'string\'", "wrap"]]
-);
-
-applyToEachArglist(
- testNotInheritedExclusionChildProperty,
- [// [property, parentValue, childValue, expectedChildValue]
- ["-webkit-wrap-through", "wrap", "none", "none"],
- ["-webkit-wrap-through", "none", "wrap", "wrap"]]
-);

Powered by Google App Engine
This is Rietveld 408576698