summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-overflow/bug785684-x.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/table-overflow/bug785684-x.html')
-rw-r--r--layout/reftests/table-overflow/bug785684-x.html85
1 files changed, 85 insertions, 0 deletions
diff --git a/layout/reftests/table-overflow/bug785684-x.html b/layout/reftests/table-overflow/bug785684-x.html
new file mode 100644
index 0000000000..947c65034d
--- /dev/null
+++ b/layout/reftests/table-overflow/bug785684-x.html
@@ -0,0 +1,85 @@
+<html><head>
+<meta http-equiv="content-type" content="text/html; charset=UTF-8">
+<style type="text/css">
+ .outer {
+ display:table;
+ height:20px;
+ width:300px;
+ max-width:300px;
+ }
+
+ .inner {
+ background-color: silver;
+ display:table-cell;
+ height:20px;
+ min-height:20px;
+ width:150px;
+ max-width:150px;
+ padding: 4px;
+ }
+ </style>
+</head>
+<body>
+<h2>Testing CSS overflow on display:table-cell</h2>
+<div class="outer">
+ <div class="inner" style="overflow-x:hidden;">
+ <img width="400px" height="10px" src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs=">
+ </div>
+</div>
+<div class="outer">
+ <div class="inner" style="overflow-x:scroll;">
+ <img width="400px" height="10px" src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs=">
+ </div>
+</div>
+<div class="outer">
+ <div class="inner" style="overflow-x:clip;">
+ <img width="400px" height="10px" src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs=">
+ </div>
+</div>
+<div class="outer">
+ <div class="inner" style="overflow:hidden;">
+ <img width="400px" height="10px" src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs=">
+ </div>
+</div>
+<div class="outer">
+ <div class="inner" style="overflow:scroll;">
+ <img width="400px" height="10px" src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs=">
+ </div>
+</div>
+<div class="outer">
+ <div class="inner" style="overflow:clip;">
+ <img width="400px" height="10px" src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs=">
+ </div>
+</div>
+<h2>Testing CSS overflow on display:table</h2>
+<div class="outer" style="overflow-x:hidden;">
+ <div class="inner">
+ <img width="400px" height="10px" src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs=">
+ </div>
+</div>
+<div class="outer" style="overflow-x:scroll;">
+ <div class="inner">
+ <img width="400px" height="10px" src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs=">
+ </div>
+</div>
+<div class="outer" style="overflow-x:clip;">
+ <div class="inner">
+ <img width="400px" height="10px" src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs=">
+ </div>
+</div>
+<div class="outer" style="overflow:hidden;">
+ <div class="inner">
+ <img width="400px" height="10px" src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs=">
+ </div>
+</div>
+<div class="outer" style="overflow:scroll;">
+ <div class="inner">
+ <img width="400px" height="10px" src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs=">
+ </div>
+</div>
+<div class="outer" style="overflow:clip;">
+ <div class="inner">
+ <img width="400px" height="10px" src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs=">
+ </div>
+</div>
+</body></html>