| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> |
| 4 <script src="../../../http/tests/inspector/elements-test.js"></script> | 4 <script src="../../../http/tests/inspector/elements-test.js"></script> |
| 5 <style> | 5 <style> |
| 6 #pseudo::after { | 6 #pseudo::after { |
| 7 pseudo-property: "12"; | 7 pseudo-property: "12"; |
| 8 color: red; | 8 color: red; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 { | 200 { |
| 201 InspectorTest.addResult("\n\n#### AFTER PROPERTY INSERTED ####\n
\n"); | 201 InspectorTest.addResult("\n\n#### AFTER PROPERTY INSERTED ####\n
\n"); |
| 202 InspectorTest.dumpSelectedElementStyles(true, false, true); | 202 InspectorTest.dumpSelectedElementStyles(true, false, true); |
| 203 var rules = getMatchedRules(); | 203 var rules = getMatchedRules(); |
| 204 validateRuleRanges("pseudo", rules, next); | 204 validateRuleRanges("pseudo", rules, next); |
| 205 } | 205 } |
| 206 }, | 206 }, |
| 207 ]); | 207 ]); |
| 208 } | 208 } |
| 209 </script> | 209 </script> |
| 210 <link rel="stylesheet" href="resources/styles-update-links-2.css"></link> | 210 <link rel="stylesheet" href="../styles/resources/styles-update-links-2.css"></li
nk> |
| 211 <link rel="stylesheet" href="resources/styles-update-links.css"></link> | 211 <link rel="stylesheet" href="../styles/resources/styles-update-links.css"></link
> |
| 212 </head> | 212 </head> |
| 213 | 213 |
| 214 <body onload="runTest()"> | 214 <body onload="runTest()"> |
| 215 <p> | 215 <p> |
| 216 Tests that removal of property following its disabling works. | 216 Tests that removal of property following its disabling works. |
| 217 </p> | 217 </p> |
| 218 | 218 |
| 219 <div id="container" class="left-intact should-change"> | 219 <div id="container" class="left-intact should-change"> |
| 220 Red text here. | 220 Red text here. |
| 221 </div> | 221 </div> |
| 222 | 222 |
| 223 <div id="other"></div> | 223 <div id="other"></div> |
| 224 | 224 |
| 225 <section id="pseudo"></div> | 225 <section id="pseudo"></div> |
| 226 | 226 |
| 227 </body> | 227 </body> |
| 228 </html> | 228 </html> |
| OLD | NEW |