Title: [154483] trunk/LayoutTests
Revision
154483
Author
[email protected]
Date
2013-08-23 05:48:52 -0700 (Fri, 23 Aug 2013)

Log Message

[CSS Regions] Can't scroll to see content overflowing last region
https://bugs.webkit.org/show_bug.cgi?id=74737

Reviewed by Antti Koivisto.

Add a test to verify region content overflowing the view is reachable.

* fast/regions/frame-view-overflow-scroll-expected.html: Added.
* fast/regions/frame-view-overflow-scroll.html: Added.

Modified Paths

Added Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (154482 => 154483)


--- trunk/LayoutTests/ChangeLog	2013-08-23 12:47:14 UTC (rev 154482)
+++ trunk/LayoutTests/ChangeLog	2013-08-23 12:48:52 UTC (rev 154483)
@@ -1,3 +1,15 @@
+2013-08-23  Andrei Bucur  <[email protected]>
+
+        [CSS Regions] Can't scroll to see content overflowing last region
+        https://bugs.webkit.org/show_bug.cgi?id=74737
+
+        Reviewed by Antti Koivisto.
+
+        Add a test to verify region content overflowing the view is reachable.
+
+        * fast/regions/frame-view-overflow-scroll-expected.html: Added.
+        * fast/regions/frame-view-overflow-scroll.html: Added.
+
 2013-08-23  Arpita Bahuguna  <[email protected]>
 
         <br> does not get deleted when inlined after some non-textual content.

Added: trunk/LayoutTests/fast/regions/frame-view-overflow-scroll-expected.html (0 => 154483)


--- trunk/LayoutTests/fast/regions/frame-view-overflow-scroll-expected.html	                        (rev 0)
+++ trunk/LayoutTests/fast/regions/frame-view-overflow-scroll-expected.html	2013-08-23 12:48:52 UTC (rev 154483)
@@ -0,0 +1,23 @@
+<html>
+  <head>
+    <meta charset="UTF-8">
+    <style type="text/css">
+    .content {
+      font-size: 500%;
+    }
+
+    .region {
+      width: 400px;
+      height: 15em;
+      background-color: lightgray;
+      overflow: visible;
+    }
+    </style>
+  </head>
+  <body>
+    <p>Test for https://bugs.webkit.org/show_bug.cgi?id=74737.</p>
+    <div class="region"><span class="content">Gigantic text to ensure that the window isn't large enough to
+      view it all. You should be able to scroll to see all of the
+      overflow content right to the very end.</span></div>
+  </body>
+</html>

Added: trunk/LayoutTests/fast/regions/frame-view-overflow-scroll.html (0 => 154483)


--- trunk/LayoutTests/fast/regions/frame-view-overflow-scroll.html	                        (rev 0)
+++ trunk/LayoutTests/fast/regions/frame-view-overflow-scroll.html	2013-08-23 12:48:52 UTC (rev 154483)
@@ -0,0 +1,28 @@
+<html>
+  <head>
+    <meta charset="UTF-8">
+    <style type="text/css">
+    .content {
+      -webkit-flow-into: flow;
+      font-size: 500%;
+    }
+
+    .region {
+      -webkit-flow-from: flow;
+      width: 400px;
+      height: 15em;
+      background-color: lightgray;
+      overflow: visible;
+    }
+    </style>
+  </head>
+  <body>
+    <p>Test for https://bugs.webkit.org/show_bug.cgi?id=74737.</p>
+    <div class="region"></div>
+    <div class="content">
+      Gigantic text to ensure that the window isn't large enough to
+      view it all. You should be able to scroll to see all of the
+      overflow content right to the very end.
+    </div>
+  </body>
+</html>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to