| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 <script src="../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../fast/js/resources/js-test-pre.js"></script> |
| 5 | 5 |
| 6 <style> | 6 <style> |
| 7 ol li::before { content: counter(l1) ":"; counter-increment: l1;} | 7 ol li::before { content: counter(l1) ":"; counter-increment: l1;} |
| 8 ol li { list-style-type: decimial; display: block; } | 8 ol li { list-style-type: decimial; display: block; } |
| 9 </style> | 9 </style> |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 var line2 = accessibilityController.accessibleElementById("line2"); | 33 var line2 = accessibilityController.accessibleElementById("line2"); |
| 34 shouldBe("line2.childAtIndex(0).stringValue", "'AXValue: 2'"); | 34 shouldBe("line2.childAtIndex(0).stringValue", "'AXValue: 2'"); |
| 35 shouldBe("line2.childAtIndex(1).stringValue", "'AXValue: :'"); | 35 shouldBe("line2.childAtIndex(1).stringValue", "'AXValue: :'"); |
| 36 shouldBe("line2.childAtIndex(2).stringValue", "'AXValue: line2'"); | 36 shouldBe("line2.childAtIndex(2).stringValue", "'AXValue: line2'"); |
| 37 | 37 |
| 38 document.getElementById("container").style.display = "none"; | 38 document.getElementById("container").style.display = "none"; |
| 39 } | 39 } |
| 40 | 40 |
| 41 </script> | 41 </script> |
| 42 | 42 |
| 43 <script src="../fast/js/resources/js-test-post.js"></script> | |
| 44 </body> | 43 </body> |
| 45 </html> | 44 </html> |
| OLD | NEW |