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

Side by Side Diff: LayoutTests/fast/css/getFloatValueForUnit.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../js/resources/js-test-pre.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <div id="test-div" style="font-size: 10pt; -webkit-transform: rotate(100grad); - webkit-animation-delay: 0.2s;"></div> 7 <div id="test-div" style="font-size: 10pt; -webkit-transform: rotate(100grad); - webkit-animation-delay: 0.2s;"></div>
8 <script> 8 <script>
9 if (window.testRunner) 9 if (window.testRunner)
10 testRunner.dumpAsText(); 10 testRunner.dumpAsText();
11 11
12 var invalidAccessError = "InvalidAccessError: A parameter or an operation was no t supported by the underlying object."; 12 var invalidAccessError = "InvalidAccessError: A parameter or an operation was no t supported by the underlying object.";
13 13
14 description("Testing whether CSSPrimitiveValue.getFloatValue() converts units co rrectly."); 14 description("Testing whether CSSPrimitiveValue.getFloatValue() converts units co rrectly.");
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 shouldThrow("getFirstFloatValueInList('-webkit-transform', CSSPrimitiveValue.CSS _HZ)", "invalidAccessError"); 52 shouldThrow("getFirstFloatValueInList('-webkit-transform', CSSPrimitiveValue.CSS _HZ)", "invalidAccessError");
53 shouldThrow("getFirstFloatValueInList('-webkit-transform', CSSPrimitiveValue.CSS _RGBCOLOR)", "invalidAccessError"); 53 shouldThrow("getFirstFloatValueInList('-webkit-transform', CSSPrimitiveValue.CSS _RGBCOLOR)", "invalidAccessError");
54 54
55 shouldThrow("getFloatValue('-webkit-animation-delay', CSSPrimitiveValue.CSS_PERC ENTAGE)", "invalidAccessError"); 55 shouldThrow("getFloatValue('-webkit-animation-delay', CSSPrimitiveValue.CSS_PERC ENTAGE)", "invalidAccessError");
56 shouldThrow("getFloatValue('-webkit-animation-delay', CSSPrimitiveValue.CSS_PX)" , "invalidAccessError"); 56 shouldThrow("getFloatValue('-webkit-animation-delay', CSSPrimitiveValue.CSS_PX)" , "invalidAccessError");
57 shouldThrow("getFloatValue('-webkit-animation-delay', CSSPrimitiveValue.CSS_DEG) ", "invalidAccessError"); 57 shouldThrow("getFloatValue('-webkit-animation-delay', CSSPrimitiveValue.CSS_DEG) ", "invalidAccessError");
58 shouldThrow("getFloatValue('-webkit-animation-delay', CSSPrimitiveValue.CSS_HZ)" , "invalidAccessError"); 58 shouldThrow("getFloatValue('-webkit-animation-delay', CSSPrimitiveValue.CSS_HZ)" , "invalidAccessError");
59 shouldThrow("getFloatValue('-webkit-animation-delay', CSSPrimitiveValue.CSS_RGBC OLOR)", "invalidAccessError"); 59 shouldThrow("getFloatValue('-webkit-animation-delay', CSSPrimitiveValue.CSS_RGBC OLOR)", "invalidAccessError");
60 </script> 60 </script>
61 </body> 61 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698