| OLD | NEW | 
|---|
| 1 <span xmlns="http://www.w3.org/1999/xhtml"> | 1 <span xmlns="http://www.w3.org/1999/xhtml"> | 
| 2 <span/> | 2 <span/> | 
| 3 <style> | 3 <style> | 
| 4     span | 4     span | 
| 5     { | 5     { | 
| 6         counter-increment: counter; | 6         counter-increment: counter; | 
| 7     } | 7     } | 
| 8     span:before | 8     span:before | 
| 9     { | 9     { | 
| 10         content: counter(counter); | 10         content: counter(counter); | 
| (...skipping 11 matching lines...) Expand all  Loading... | 
| 22         document.documentElement.textContent = "PASS"; | 22         document.documentElement.textContent = "PASS"; | 
| 23 | 23 | 
| 24         if (window.layoutTestController) | 24         if (window.layoutTestController) | 
| 25             layoutTestController.notifyDone(); | 25             layoutTestController.notifyDone(); | 
| 26     } | 26     } | 
| 27 | 27 | 
| 28     setTimeout('runTest()', 0); | 28     setTimeout('runTest()', 0); | 
| 29 </script> | 29 </script> | 
| 30 <span/> | 30 <span/> | 
| 31 | 31 | 
| OLD | NEW | 
|---|