Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / squashing / tricky-element-removal-crash.html
blobe8874210e20b99a98a7cee7cf1dbdf2f2273570d
1 <!DOCTYPE html>
2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script>
3 <div style="width: 200px; height: 200px; transform: translateZ(0); background-color: salmon;"></div>
4 <div style="position: absolute; z-index: 0; top: 8px; width: 100px; height: 100px">
5 <div id="target" style="width: 100px; height: 100px; transform: translateZ(0); background-color: blue">
6 </div>
7 <script>
8 function repaintTest() {
9 document.querySelector('#target').remove();
12 runRepaintTest();
13 </script>