| 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> | 5 <script src="../../workspace-test.js"></script> | 
| 6 <script> | 6 <script> | 
| 7 function loadCSS() | 7 function loadCSS() | 
| 8 { | 8 { | 
| 9     var link = document.createElement("link"); | 9     var link = document.createElement("link"); | 
| 10     link.rel = "stylesheet"; | 10     link.rel = "stylesheet"; | 
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 42 | 42 | 
| 43     function afterBind() | 43     function afterBind() | 
| 44     { | 44     { | 
| 45         InspectorTest.addResult("Source map was bound to the file loaded from fi
    lesystem:"); | 45         InspectorTest.addResult("Source map was bound to the file loaded from fi
    lesystem:"); | 
| 46         dumpLiveLocation(); | 46         dumpLiveLocation(); | 
| 47         InspectorTest.completeTest(); | 47         InspectorTest.completeTest(); | 
| 48     } | 48     } | 
| 49 | 49 | 
| 50     function dumpLiveLocation() | 50     function dumpLiveLocation() | 
| 51     { | 51     { | 
| 52         var uiLocation = liveLocation.uiLocation(); | 52         var uiLocation = liveLocation.uiLocation; | 
| 53         if (!uiLocation) { | 53         if (!uiLocation) { | 
| 54             InspectorTest.addResult("Null uiLocation"); | 54             InspectorTest.addResult("Null uiLocation"); | 
| 55             return; | 55             return; | 
| 56         } | 56         } | 
| 57         var networkURL = WebInspector.networkMapping.networkURL(uiLocation.uiSou
    rceCode); | 57         var networkURL = WebInspector.networkMapping.networkURL(uiLocation.uiSou
    rceCode); | 
| 58         InspectorTest.addResult(networkURL + ":" + uiLocation.lineNumber + ":" +
     uiLocation.columnNumber); | 58         InspectorTest.addResult(networkURL + ":" + uiLocation.lineNumber + ":" +
     uiLocation.columnNumber); | 
| 59     } | 59     } | 
| 60 }; | 60 }; | 
| 61 </script> | 61 </script> | 
| 62 </head> | 62 </head> | 
| 63 <body onload="runTest()"> | 63 <body onload="runTest()"> | 
| 64 <p>Tests that stylesheet LiveLocations are updated when an SCSS file is loaded f
    rom the filesystem.</p> | 64 <p>Tests that stylesheet LiveLocations are updated when an SCSS file is loaded f
    rom the filesystem.</p> | 
| 65 </body> | 65 </body> | 
| 66 </html> | 66 </html> | 
| OLD | NEW | 
|---|