| OLD | NEW |
| 1 <html xmlns="http://www.w3.org/1999/xhtml"> | 1 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 if (window.testRunner) | 4 if (window.testRunner) |
| 5 testRunner.dumpAsText(); | 5 testRunner.dumpAsText(); |
| 6 | 6 |
| 7 function finish() { | 7 function finish() { |
| 8 document.getElementById("result").innerHTML = "PASS"; | 8 document.getElementById("result").innerHTML = "PASS"; |
| 9 } | 9 } |
| 10 </script> | 10 </script> |
| 11 </head> | 11 </head> |
| 12 <body onload="finish()"> | 12 <body onload="finish()"> |
| 13 <p>Tests that text transformation applied to a non-text node does not result in
crash.</p> | 13 <p>Tests that text transformation applied to a non-text node does not result in
crash.</p> |
| 14 <div id="result"></div> | 14 <div id="result"></div> |
| 15 <br> | 15 <br> |
| 16 <style type="text/css"> | 16 <style type="text/css"> |
| 17 br { | 17 br { |
| 18 text-transform: lowercase; | 18 text-transform: lowercase; |
| 19 } | 19 } |
| 20 br:first-letter { | 20 br:first-letter { |
| 21 text-transform: lowercase; | 21 text-transform: lowercase; |
| 22 } | 22 } |
| 23 </style> | 23 </style> |
| 24 </br> | 24 </br> |
| 25 </body> | 25 </body> |
| 26 </html> | 26 </html> |
| OLD | NEW |