Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / sources / css-inline-sourcemap.html
blob1d4bca388511a7e9d5fea64b70678c16090ba0bb
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/debugger-test.js"></script>
5 <style>/*# sourceMappingURL=data:application/json;charset=utf-8;base64,ew0KICAidmVyc2lvbiI6IDMsDQogICJmaWxlIjogIiIsDQogICJzb3VyY2VzIjogWyIuL3Jlc291cmNlcy9lbXB0eS5zY3NzIl0sDQogICJuYW1lcyI6IFtdLA0KICAibWFwcGluZ3MiOiAiIg0KfQ== */</style>
6 <script>
7 function test()
9 InspectorTest.showScriptSource("empty.scss", onSourceFrame);
11 function onSourceFrame(sourceFrame)
13 InspectorTest.addResult("Source mapping loaded.");
14 InspectorTest.completeTest();
15 dumpSuggestions = InspectorTest.dumpSuggestions.bind(InspectorTest, sourceFrame.textEditor);
16 InspectorTest.runTestSuite(testSuite);
20 </script>
21 </head>
23 <body onload="runTest();">
24 <p>
25 The test verifies that source maps are loaded if specified inside style tag.
26 </p>
27 </body>
28 </html>