3 <script src=
"resources/text-based-repaint.js"></script>
8 /* background-size is implicitly set to initial via the background shorthand. */
9 background:-webkit-gradient(
13 color-stop(
0%, rgba(
255,
255,
0,
0)), color-stop(
100%, rgba(
0,
0,
0,
1))
23 //This test verifies that gradient background gets repainted properly after child box height change.
25 function repaintTest() {
26 document
.getElementById('inner').style
.height
= 300 + 'px';
30 <body onload='runRepaintTest();'
>