| Index: LayoutTests/fast/repaint/box-sizing.html
|
| diff --git a/LayoutTests/fast/repaint/box-sizing.html b/LayoutTests/fast/repaint/box-sizing.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..bcc83feaf478ac70a76ad4859704ba6815fe426b
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/repaint/box-sizing.html
|
| @@ -0,0 +1,22 @@
|
| +<!DOCTYPE HTML>
|
| +<script src="resources/text-based-repaint.js"></script>
|
| +<script>
|
| +function repaintTest()
|
| +{
|
| + document.getElementById('target').style.boxSizing = 'content-box';
|
| +}
|
| +window.onload = runRepaintTest;
|
| +</script>
|
| +<style>
|
| +body {
|
| + margin: 0;
|
| +}
|
| +#target {
|
| + border: solid blue 20px;
|
| + width: 50%;
|
| + height: 100px;
|
| + box-sizing: border-box;
|
| + position: absolute;
|
| +}
|
| +</style>
|
| +<div id="target"></div>
|
|
|