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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/styleValue-stringifier.html

Issue 2957603002: [CSS Typed OM] Re-implement ToCSSValue and AsMatrix for CSSRotation (Closed)
Patch Set: rebase Created 3 years, 5 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: third_party/WebKit/LayoutTests/typedcssom/styleValue-stringifier.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/styleValue-stringifier.html b/third_party/WebKit/LayoutTests/typedcssom/styleValue-stringifier.html
deleted file mode 100644
index b77c0f76bc13232b5b8d4e4586a8b81d33d908dd..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/typedcssom/styleValue-stringifier.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<script src='../resources/testharness.js'></script>
-<script src='../resources/testharnessreport.js'></script>
-<script>
-
-var styleValues = {
- // TODO(meade): Add each CSSStyleValue type here.
- 'initial': new CSSKeywordValue('initial'),
- '10px': new CSSUnitValue(10, 'px'),
- 'rotate(10deg)': new CSSTransformValue(
- [new CSSRotation(new CSSUnitValue(10, 'deg'))]),
-};
-
-for (var cssText in styleValues) {
- test(function() {
- assert_equals(styleValues[cssText].toString(), cssText);
- assert_equals(styleValues[cssText].toString(), cssText);
- }, 'Style value with type ' + styleValues[cssText].constructor.name +
- 'with value "' + cssText + '" serializes correctly');
-}
-
-</script>

Powered by Google App Engine
This is Rietveld 408576698