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

Side by Side Diff: LayoutTests/fast/css/aspect-ratio-parsing-tests.html

Issue 48903019: Delete js-test-post.js. (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 PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html> 2 <html>
3 <head> 3 <head>
4 <link rel="stylesheet" href="../../fast/js/resources/js-test-style.css"> 4 <link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
5 <script src="../../fast/js/resources/js-test-pre.js"></script> 5 <script src="../../fast/js/resources/js-test-pre.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <p id="description"></p> 8 <p id="description"></p>
9 <div id="console"></div> 9 <div id="console"></div>
10 <div id="aspectRatioTest"></div> 10 <div id="aspectRatioTest"></div>
(...skipping 21 matching lines...) Expand all
32 shouldBeEqualToString('testParsing("aspectRatioTest", "1/a", "-webkit-aspe ct-ratio")', 'none'); 32 shouldBeEqualToString('testParsing("aspectRatioTest", "1/a", "-webkit-aspe ct-ratio")', 'none');
33 shouldBeEqualToString('testParsing("aspectRatioTest", "abc123", "-webkit-a spect-ratio")', 'none'); 33 shouldBeEqualToString('testParsing("aspectRatioTest", "abc123", "-webkit-a spect-ratio")', 'none');
34 shouldBeEqualToString('testParsing("aspectRatioTest", "1", "-webkit-aspect -ratio")', 'none'); 34 shouldBeEqualToString('testParsing("aspectRatioTest", "1", "-webkit-aspect -ratio")', 'none');
35 shouldBeEqualToString('testParsing("aspectRatioTest", "1 / 0", "-webkit-as pect-ratio")', 'none'); 35 shouldBeEqualToString('testParsing("aspectRatioTest", "1 / 0", "-webkit-as pect-ratio")', 'none');
36 shouldBeEqualToString('testParsing("aspectRatioTest", "0 / 1", "-webkit-as pect-ratio")', 'none'); 36 shouldBeEqualToString('testParsing("aspectRatioTest", "0 / 1", "-webkit-as pect-ratio")', 'none');
37 shouldBeEqualToString('testParsing("aspectRatioTest", "0 / 0", "-webkit-as pect-ratio")', 'none'); 37 shouldBeEqualToString('testParsing("aspectRatioTest", "0 / 0", "-webkit-as pect-ratio")', 'none');
38 shouldBeEqualToString('testParsing("aspectRatioTest", "-1 / 8", "-webkit-a spect-ratio")', 'none'); 38 shouldBeEqualToString('testParsing("aspectRatioTest", "-1 / 8", "-webkit-a spect-ratio")', 'none');
39 shouldBeEqualToString('testParsing("aspectRatioTest", "1 / -9", "-webkit-a spect-ratio")', 'none'); 39 shouldBeEqualToString('testParsing("aspectRatioTest", "1 / -9", "-webkit-a spect-ratio")', 'none');
40 shouldBeEqualToString('testParsing("aspectRatioTest", "-1 / -4", "-webkit- aspect-ratio")', 'none'); 40 shouldBeEqualToString('testParsing("aspectRatioTest", "-1 / -4", "-webkit- aspect-ratio")', 'none');
41 </script> 41 </script>
42 <script src="../../fast/js/resources/js-test-post.js"></script>
43 </body> 42 </body>
44 </html> 43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698