OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 #inspected | 4 #inspected |
5 { | 5 { |
6 color: green; | 6 color: green; |
7 } | 7 } |
8 </style> | 8 </style> |
9 <script src="../../inspector-test.js"></script> | 9 <script src="../../inspector-test.js"></script> |
10 <script src="../../elements-test.js"></script> | 10 <script src="../../elements-test.js"></script> |
11 <script> | 11 <script> |
12 | 12 |
13 function addStylesheet() | 13 function addStylesheet() |
14 { | 14 { |
15 var linkElement = document.createElement("link"); | 15 var linkElement = document.createElement("link"); |
16 linkElement.rel = "stylesheet"; | 16 linkElement.rel = "stylesheet"; |
17 linkElement.href = "resources/selector-line-deprecated.css"; | 17 linkElement.href = "resources/selector-line-deprecated.css"; |
18 document.head.appendChild(linkElement); | 18 document.head.appendChild(linkElement); |
19 } | 19 } |
20 | 20 |
21 function test() | 21 function test() |
22 { | 22 { |
23 WebInspector.cssModel.addEventListener(WebInspector.CSSStyleModel.Events.Sty
leSheetAdded, step1, this); | 23 InspectorTest.cssModel.addEventListener(WebInspector.CSSStyleModel.Events.St
yleSheetAdded, step1, this); |
24 InspectorTest.evaluateInPage("addStylesheet()"); | 24 InspectorTest.evaluateInPage("addStylesheet()"); |
25 | 25 |
26 function step1() | 26 function step1() |
27 { | 27 { |
28 InspectorTest.addSniffer(WebInspector.CSSWorkspaceBinding.prototype, "pu
shSourceMapping", sourceMappingSniffer, true); | 28 InspectorTest.addSniffer(WebInspector.CSSWorkspaceBinding.prototype, "pu
shSourceMapping", sourceMappingSniffer, true); |
29 | 29 |
30 function sourceMappingSniffer(header, sourceMapping) | 30 function sourceMappingSniffer(header, sourceMapping) |
31 { | 31 { |
32 if (sourceMapping instanceof WebInspector.SASSSourceMapping) { | 32 if (sourceMapping instanceof WebInspector.SASSSourceMapping) { |
33 InspectorTest.selectNodeAndWaitForStyles("inspected", step2); | 33 InspectorTest.selectNodeAndWaitForStyles("inspected", step2); |
(...skipping 15 matching lines...) Expand all Loading... |
49 <p> | 49 <p> |
50 Tests that selector line is computed correctly regardless of its start column. <
a href="https://bugs.webkit.org/show_bug.cgi?id=110732">Bug 110732</a>. | 50 Tests that selector line is computed correctly regardless of its start column. <
a href="https://bugs.webkit.org/show_bug.cgi?id=110732">Bug 110732</a>. |
51 </p> | 51 </p> |
52 | 52 |
53 <div id="container"> | 53 <div id="container"> |
54 <div id="inspected">Text</div> | 54 <div id="inspected">Text</div> |
55 </div> | 55 </div> |
56 | 56 |
57 </body> | 57 </body> |
58 </html> | 58 </html> |
OLD | NEW |