Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / deprecated-flexbox / inline-children-crash.html
blob1c21a731b2a14ae54a5943fa615ff2c41bc6789b
1 <html>
2 <head>
3 <style>
4 #flexbox {
5 display: -moz-box;
6 display: -khtml-box;
7 display: box;
8 width: 100px;
9 height: 100px;
10 -moz-box-orient: vertical;
11 -webkit-box-orient: vertical;
12 box-orient: vertical;
13 -webkit-line-clamp: 50%;
15 </style>
16 <script>
17 if (window.testRunner)
18 testRunner.dumpAsText();
19 </script>
20 </head>
21 <body>
22 <p>Remove last block content from a flexbox, leaving only inline content. This should not crash</p>
24 <div id="flexbox"><div id=remove></div>text</div>
25 <script>
26 var flexbox = document.getElementById('flexbox');
27 flexbox.removeChild(flexbox.firstChild);
28 </script>
29 </body>