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"]] |
-); |