| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 table { | 5 table { |
| 6 overflow: hidden; | 6 overflow: hidden; |
| 7 } | 7 } |
| 8 </style> | 8 </style> |
| 9 <script> | 9 <script> |
| 10 function onSelectionChange(select) | 10 function onSelectionChange(select) |
| 11 { | 11 { |
| 12 document.getElementById('hiddenRow').style.display = ''; | 12 document.getElementById('hiddenRow').style.display = ''; |
| 13 } | 13 } |
| 14 </script> | 14 </script> |
| 15 </head> | 15 </head> |
| 16 <body> | 16 <body> |
| 17 <div><a href="https://bugs.webkit.org/show_bug.cgi?id=95776">95776</a>: REGR
ESSION(r120832): RenderLayer::clampScrollOffset doesn't properly clamp</div> | 17 <div><a href="https://bugs.webkit.org/show_bug.cgi?id=95776">95776</a>: REGR
ESSION(r120832): Layer::clampScrollOffset doesn't properly clamp</div> |
| 18 <div>Manual test: click on the menu below and <select> the 'shown' opt
ion. Click somewhere on the page so that the <select> loses focus and clic
k again on the <select>.</div> | 18 <div>Manual test: click on the menu below and <select> the 'shown' opt
ion. Click somewhere on the page so that the <select> loses focus and clic
k again on the <select>.</div> |
| 19 <div>To pass the menu should be properly placed below the <select>.</d
iv> | 19 <div>To pass the menu should be properly placed below the <select>.</d
iv> |
| 20 <form name="teste"> | 20 <form name="teste"> |
| 21 <table> | 21 <table> |
| 22 <tr> | 22 <tr> |
| 23 <th>Test select:</th> | 23 <th>Test select:</th> |
| 24 <td> | 24 <td> |
| 25 <select onchange=onSelectionChange(this)> | 25 <select onchange=onSelectionChange(this)> |
| 26 <option value="0">hidden</option> | 26 <option value="0">hidden</option> |
| 27 <option value="1">shown</option> | 27 <option value="1">shown</option> |
| 28 </select> | 28 </select> |
| 29 </td> | 29 </td> |
| 30 </tr> | 30 </tr> |
| 31 <tr id="hiddenRow" style="display: none;"> | 31 <tr id="hiddenRow" style="display: none;"> |
| 32 <th>Lorem ipsum</th> | 32 <th>Lorem ipsum</th> |
| 33 <td>dolor sic amet.</td> | 33 <td>dolor sic amet.</td> |
| 34 </tr> | 34 </tr> |
| 35 </table> | 35 </table> |
| 36 </form> | 36 </form> |
| 37 </body> | 37 </body> |
| 38 </html> | 38 </html> |
| OLD | NEW |