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

Side by Side Diff: LayoutTests/scrollbars/scrollbar-large-overflow-rectangle.html

Issue 22799017: Prevent overflow of width/height of layout overflow rectangle which can cause scroll bar to misfunc… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix expected txt Created 7 years, 4 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
« no previous file with comments | « no previous file | LayoutTests/scrollbars/scrollbar-large-overflow-rectangle-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>absolute positioned element with large negative top value inside tall relative positioned box does not render scrollbars</title>
5 <style>
6 body, p{
7 margin:0;
8 }
9 div{
10 position: relative;
11 height:3000px;
12 }
13 span{
14 position: absolute;
15 top:-3355400000px;
16 }
17 </style>
18 <script>
19 if (window.testRunner) {
20 testRunner.dumpAsText();
21 }
22
23 function test() {
24 var height = document.body.scrollHeight;
25 if (height == 3000)
26 document.getElementById("result").innerHTML = "PASS";
27 else
28 document.getElementById("result").innerHTML = "<p style='color:r ed'>FAIL document.body.scrollHeight = " + height +"</p>";
29 }
30 </script>
31 </head>
32
33 <body onload="test()">
34 <div>
35 <p> This page should be scrollable </p>
36 <p id="result"> </p>
37 <span style="visibility:hidden">filler <!--abs pos with very large negativ e top value--></span>
38 </div>
39
40 </body>
41 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/scrollbars/scrollbar-large-overflow-rectangle-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698