Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaron authored and gsnedders committed Nov 8, 2017
1 parent 767f4d4 commit db6c75e
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 3 deletions.
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html class="reftest-paged">
<title>
Reference
</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
position: absolute;
left: 0; right: 0;
height: 100%;
}
div {
border: solid orange 10px;
}
div + div {
border: solid transparent 20px;
}
div > div {
border: solid gray 10px;
height: 300%;
}
</style>
<div></div>
<div>
<div></div>
</div>
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html class="reftest-paged">
<title>
Overflowing content does not affect whether a fixed-height box fits on a page,
but does get printed on the next page.
</title>
<meta name="flags" content="may print">
<link rel="match" href="moz-block-fragmentation-001-ref.html">
<link rel="help" href="https://www.w3.org/TR/css-break-3/#parallel-flows">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
height: 100%;
}
body {
border: solid orange 10px;
padding: 10px;
}
div {
border: solid gray 10px;
height: 300%;
}
</style>
<div></div>
@@ -0,0 +1 @@
== moz-block-fragmentation-001.html moz-block-fragmentation-001-ref.html
Expand Up @@ -87,7 +87,6 @@
== mask-size-percent-percent.html mask-size-percent-percent-ref.html
== mask-size-percent-percent-stretch.html mask-size-percent-percent-stretch-ref.html


== clip-path-contentBox-1a.html clip-path-geometryBox-1-ref.html
== clip-path-contentBox-1b.html clip-path-geometryBox-1-ref.html
== clip-path-contentBox-1c.html clip-path-geometryBox-1-ref.html
Expand All @@ -108,8 +107,6 @@

== clip-path-localRef-1.html clip-path-localRef-1-ref.html

default-preferences

# mask with opacity test cases
== mask-opacity-1a.html mask-opacity-1-ref.html
== mask-opacity-1b.html mask-opacity-1-ref.html
Expand Down
Expand Up @@ -16,6 +16,9 @@ include css21/reftest.list
# Backgrounds and Borders
include background/reftest.list

# Fragmentation
include break3/reftest.list

# Color Level 4
include color4/reftest.list

Expand Down
Expand Up @@ -10,6 +10,8 @@
textarea {
all: inherit;
width: 100%;
height: 10em; /* ensure there's plenty of height even if the default font is quite tall,
to avoid risk of a vertical scrollbar showing up inside textarea */
box-sizing: border-box;
border: 0 none; margin: 0; padding: 0;
}
Expand Down

0 comments on commit db6c75e

Please sign in to comment.