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

Side by Side 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, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script>
4
5 <script>
6 var values = [
7 {input: new CSSNumberValue(0), cssText: '0'},
8 {input: new CSSNumberValue(1), cssText: '1'},
9 {input: new CSSNumberValue(-2), cssText: '-2'},
10 {input: new CSSNumberValue(3.4), cssText: '3.4'}
11 ];
12
13 test(function() {
14 for (var i = 0; i < values.length; ++i) {
15 assert_equals(values[i].input.cssText, values[i].cssText);
16 }
17 }, "Test that the css string for CSSNumberValue is correct.");
18
19 </script>
20
21 <body>
22 </body>
23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698