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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/devtools/console/console-format-style.js

Issue 2982263002: DevTools: prepare migration for a batch of console tests (Closed)
Patch Set: update test expects Created 3 years, 5 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
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script> 3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/console-test.js"></script> 4 <script src="../../http/tests/inspector/console-test.js"></script>
5 <script> 5 <script>
6 function onload() 6 function onload()
7 { 7 {
8 console.log("%cBlue!.", "color: blue;"); 8 console.log("%cBlue!.", "color: blue;");
9 console.log("%cBlue! %cRed!", "color: blue;", "color: red;"); 9 console.log("%cBlue! %cRed!", "color: blue;", "color: red;");
10 console.log("%cwww.google.com", "color: blue"); 10 console.log("%cwww.google.com", "color: blue");
(...skipping 10 matching lines...) Expand all
21 InspectorTest.completeTest(); 21 InspectorTest.completeTest();
22 } 22 }
23 } 23 }
24 </script> 24 </script>
25 </head> 25 </head>
26 26
27 <body onload="onload()"> 27 <body onload="onload()">
28 <p>Tests that console logging dumps properly styled messages.</p> 28 <p>Tests that console logging dumps properly styled messages.</p>
29 </body> 29 </body>
30 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698