Index: LayoutTests/fast/repaint/resize-with-border.html |
diff --git a/LayoutTests/fast/repaint/resize-with-border.html b/LayoutTests/fast/repaint/resize-with-border.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..506fb250e1e905a3198532966e5e1930c3769558 |
--- /dev/null |
+++ b/LayoutTests/fast/repaint/resize-with-border.html |
@@ -0,0 +1,20 @@ |
+<!DOCTYPE html> |
+<script src="resources/text-based-repaint.js"></script> |
+<script> |
+function repaintTest() |
+{ |
+ document.getElementById('div').style.width = '400px'; |
+} |
+window.onload = runRepaintTest; |
+</script> |
+<style> |
+body { |
+ margin: 0; |
+} |
+div { |
+ width: 200px; |
+ height: 200px; |
+ border: green 10px solid; |
+} |
+</style> |
+<div id="div"></div> |