Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / repaint / select-option-background-color.html
1 <head>
2 <title>This is a test for regression against https://bugs.webkit.org/show_bug.cgi?id=49790</title>
3 </head>
4
5 <body style="margin: 0;" onload="runRepaintTest()">
6     <script>
7         function repaintTest()
8         {
9             document.getElementById('option').style.backgroundColor = 'green';
10         }
11     </script>
12
13     <script src="resources/repaint.js"></script>
14
15     <p>This is a test for regression against <a href="https://bugs.webkit.org/show_bug.cgi?id=49790">https://bugs.webkit.org/show_bug.cgi?id=49790</a></p>
16
17     <select multiple="multiple">
18         <option id="option" value="A">A</option>
19         <option id="option" value="B">B</option>
20     </select>
21 </body>