3 <script src=
"../../http/tests/inspector/inspector-test.js"></script>
4 <script src=
"../../http/tests/inspector/console-test.js"></script>
8 console
.log('%cColors are awesome.', 'color: blue;');
9 console
.log('%cSo are fonts!', 'font: 1em Helvetica;');
10 console
.log('%cAnd borders and margins and paddings!', 'border: 1px solid red; margin: 20px; padding: 10px;');
11 console
.log('%ctext-* is fine by us!', 'text-decoration: none;');
13 console
.log('%cDisplay, on the other hand, is bad news.', 'display: none;');
14 console
.log('%cAnd position too.', 'position: absolute;');
15 console
.log('%cAnd URL is not allowed as a value .', 'background-image: url("http://example.com/cookies")');
18 //# sourceURL=console-format-style-whitelist.html
24 InspectorTest
.expandConsoleMessages(onExpanded
);
28 InspectorTest
.dumpConsoleMessagesWithStyles();
29 InspectorTest
.completeTest();
35 <body onload=
"onload()">
36 <p>Tests that console logging dumps properly styled messages, and that
37 the whole message gets the same style, regardless of multiple %c