Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Side by Side Diff: ManualTests/select-menu-list-wrongly-positioned.html

Issue 898783003: Move rendering/RenderLayer* to layout/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 &lt;select&gt; the 'shown' opt ion. Click somewhere on the page so that the &lt;select&gt; loses focus and clic k again on the &lt;select&gt;.</div> 18 <div>Manual test: click on the menu below and &lt;select&gt; the 'shown' opt ion. Click somewhere on the page so that the &lt;select&gt; loses focus and clic k again on the &lt;select&gt;.</div>
19 <div>To pass the menu should be properly placed below the &lt;select&gt;.</d iv> 19 <div>To pass the menu should be properly placed below the &lt;select&gt;.</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>
OLDNEW
« no previous file with comments | « LayoutTests/svg/overflow/overflow-on-foreignObject.svg ('k') | Source/core/animation/Animation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698