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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/elements/styles/update-locations-on-filesystem-scss-load.html

Issue 2533073003: [DevTools] Remove workspace-test.js part1. (Closed)
Patch Set: Created 4 years 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="../../inspector-test.js"></script> 3 <script src="../../inspector-test.js"></script>
4 <script src="../../isolated-filesystem-test.js"></script> 4 <script src="../../isolated-filesystem-test.js"></script>
5 <script src="../../workspace-test.js"></script>
6 <script> 5 <script>
7 function loadCSS() 6 function loadCSS()
8 { 7 {
9 var link = document.createElement("link"); 8 var link = document.createElement("link");
10 link.rel = "stylesheet"; 9 link.rel = "stylesheet";
11 link.type = "text/css"; 10 link.type = "text/css";
12 link.href = "resources/update-locations-on-filesystem-scss-load.css"; 11 link.href = "resources/update-locations-on-filesystem-scss-load.css";
13 document.head.appendChild(link); 12 document.head.appendChild(link);
14 } 13 }
15 14
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 } 55 }
57 InspectorTest.addResult(uiLocation.uiSourceCode.url() + ":" + uiLocation .lineNumber + ":" + uiLocation.columnNumber); 56 InspectorTest.addResult(uiLocation.uiSourceCode.url() + ":" + uiLocation .lineNumber + ":" + uiLocation.columnNumber);
58 } 57 }
59 }; 58 };
60 </script> 59 </script>
61 </head> 60 </head>
62 <body onload="runTest()"> 61 <body onload="runTest()">
63 <p>Tests that stylesheet LiveLocations are updated when an SCSS file is loaded f rom the filesystem.</p> 62 <p>Tests that stylesheet LiveLocations are updated when an SCSS file is loaded f rom the filesystem.</p>
64 </body> 63 </body>
65 </html> 64 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698