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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/cssNumberValue.html

Issue 2867883003: [CSS Typed OM] Delete obsolete number and length classes from Typed OM (Closed)
Patch Set: rebase Created 3 years, 7 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/cssNumberValue.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssNumberValue.html b/third_party/WebKit/LayoutTests/typedcssom/cssNumberValue.html
deleted file mode 100644
index 5f9ff68839a1a929a210b17485410b03732b0976..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/typedcssom/cssNumberValue.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-
-<script>
-var values = [
- {input: new CSSNumberValue(0), cssText: '0'},
- {input: new CSSNumberValue(1), cssText: '1'},
- {input: new CSSNumberValue(-2), cssText: '-2'},
- {input: new CSSNumberValue(3.4), cssText: '3.4'}
-];
-
-test(function() {
- for (var i = 0; i < values.length; ++i) {
- assert_equals(values[i].input.cssText, values[i].cssText);
- }
-}, "Test that the css string for CSSNumberValue is correct.");
-
-</script>
-
-<body>
-</body>
-

Powered by Google App Engine
This is Rietveld 408576698