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