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

Side by Side Diff: LayoutTests/fast/gradients/unprefixed-gradient-parsing.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> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../js/resources/js-test-pre.js"></script> 4 <script src="../js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <script> 7 <script>
8 8
9 function testGradient(css) 9 function testGradient(css)
10 { 10 {
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 shouldBe('testGradient("background-image: radial-gradient(ellipse 10px, white, b lack)")', '"none"'); 69 shouldBe('testGradient("background-image: radial-gradient(ellipse 10px, white, b lack)")', '"none"');
70 shouldBe('testGradient("background-image: radial-gradient(ellipse 10px 20px, whi te, black)")', '"radial-gradient(10px 20px, white, black)"'); 70 shouldBe('testGradient("background-image: radial-gradient(ellipse 10px 20px, whi te, black)")', '"radial-gradient(10px 20px, white, black)"');
71 shouldBe('testGradient("background-image: radial-gradient(circle 10px, white, bl ack)")', '"radial-gradient(10px, white, black)"'); 71 shouldBe('testGradient("background-image: radial-gradient(circle 10px, white, bl ack)")', '"radial-gradient(10px, white, black)"');
72 shouldBe('testGradient("background-image: radial-gradient(10px 10px at center, w hite, black)")', '"radial-gradient(10px 10px at 50% 50%, white, black)"'); 72 shouldBe('testGradient("background-image: radial-gradient(10px 10px at center, w hite, black)")', '"radial-gradient(10px 10px at 50% 50%, white, black)"');
73 73
74 debug('<p>repeating-radial-gradient</p>'); 74 debug('<p>repeating-radial-gradient</p>');
75 shouldBe('testGradient("background-image: repeating-radial-gradient(white, black )")', '"repeating-radial-gradient(white, black)"'); 75 shouldBe('testGradient("background-image: repeating-radial-gradient(white, black )")', '"repeating-radial-gradient(white, black)"');
76 76
77 </script> 77 </script>
78 78
79 <script src="../js/resources/js-test-post.js"></script>
80 </body> 79 </body>
81 </html> 80 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/gradients/css3-gradient-parsing.html ('k') | LayoutTests/fast/harness/internals-observe-gc.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698