Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / outline-around-empty-box.html
blobb892d306fe031d4b2c777e09123accb792b20cfa
1 <!DOCTYPE html>
2 Tests paint invalidation and painting of outline around an empty box.
3 Passes if there is a green square.
4 <div id="target" style="position: absolute; top: 200px; left: 200px; outline: 50px solid red"></div>
5 <script src="../../resources/run-after-layout-and-paint.js"></script>
6 <script>
7 runAfterLayoutAndPaint(function() {
8 target.style.outlineColor = 'green';
9 }, true);
10 </script>