Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / text-transform-nontext-node-crash.xhtml
blob0783db7a4427e6672bad37d658a5460628c9ce1c
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
7 function finish() {
8 document.getElementById("result").innerHTML = "PASS";
10 </script>
11 </head>
12 <body onload="finish()">
13 <p>Tests that text transformation applied to a non-text node does not result in crash.</p>
14 <div id="result"></div>
15 <br>
16 <style type="text/css">
17 br {
18 text-transform: lowercase;
20 br:first-letter {
21 text-transform: lowercase;
23 </style>
24 </br>
25 </body>
26 </html>