Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / text / whitespace / pre-block-normal-inline-crash-1.html
blob9bd0e6eecd01998e49d840b24203e3a19c352feb
1 <style>
2 body {
3 margin-right: 100%;
5 .normal {
6 padding-left: 1px;
7 white-space: normal;
8 word-wrap: break-word;
10 .pre {
11 white-space: pre;
13 </style>
14 <div class="pre"><span class="normal">
15 This test passes if it does not CRASH.</span></div>
16 <script>
17 // Tests a case where an inline element that sets white-space:normal nested
18 // in a block that sets white-space:pre works correctly when there is a
19 // line break at the start of the inline element.
20 if (window.testRunner)
21 testRunner.dumpAsText();
22 </script>