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

Unified Diff: LayoutTests/transforms/resources/parsing-test-helper.js

Issue 212563007: Revert of Add runtime feature and property names for unprefixed CSS Transforms (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Revert three patches Created 6 years, 9 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/transforms/resources/parsing-test-helper.js
diff --git a/LayoutTests/transforms/resources/parsing-test-helper.js b/LayoutTests/transforms/resources/parsing-test-helper.js
deleted file mode 100644
index c5246ac95bb1cc594ea71b7b89c32806bcf32d4e..0000000000000000000000000000000000000000
--- a/LayoutTests/transforms/resources/parsing-test-helper.js
+++ /dev/null
@@ -1,32 +0,0 @@
-window.expect = (function() {
- var testElement = document.getElementById('target');
-
- function assert_equals_or_matches(actual, expected, description) {
- return expected instanceof RegExp ?
- assert_regexp_match(actual, expected, description) :
- assert_equals(actual, expected, description);
- }
- return function expect(property, camelProperty, input) {
- return {
- parsesAs: function(output) {
- test(function() {
- assert_true(CSS.supports(property, input), 'CSS.supports');
- testElement.style[camelProperty] = input;
- assert_equals(testElement.style[camelProperty], output);
- }, '"' + property + ': ' + input + ';" should parse as "' + output + '"');
- return this;
- },
- isComputedTo: function(output) {
- test(function() {
- testElement.style[camelProperty] = input;
- assert_equals_or_matches(getComputedStyle(testElement)[camelProperty], output);
- }, '"' + property + ': ' + input + ';" should be computed to "' + output + '"');
- },
- isInvalid: function() {
- test(function() {
- assert_false(CSS.supports(property, input), 'CSS.supports');
- }, '"' + property + ': ' + input + ';" should be invalid');
- },
- };
- }
-})();
« no previous file with comments | « LayoutTests/transforms/backface-visibility-parsing.html ('k') | LayoutTests/transforms/transform-style-parsing.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698