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