| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |