Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab

This commit is contained in:
James Graham 2015-03-27 09:18:12 +00:00
parent 1a81b18b9f
commit 2c9faf5363
91915 changed files with 5979820 additions and 0 deletions

View file

@ -0,0 +1,2 @@
<!DOCTYPE html>
<html style="background: green"><head></head><body></body></html>

View file

@ -0,0 +1,37 @@
<!DOCTYPE html>
<html><head>
<title>CSS Reftest Reference</title>
<link href="mailto:mibalan@adobe.com" rel="author" title="Mihai Balan">
<link href="../support/animations.css" rel="stylesheet">
<style>
.transformed {
transform: rotateZ(45deg);
}
.flow {
color: green;
font-family: Ahem;
font-size: 20px;
line-height: 1em;
}
.region {
width: 100px;
height: 100px;
background-color: lightblue;
}
</style>
</head>
<body>
<p>Test passes if you see a rotating green square on top of a static blue square and no red.</p>
<div class="region">
<div class="transformed flow rotate once">
xxxxx<br>
xxxxx<br>
xxxxx<br>
xxxxx<br>
xxxxx<br>
</div>
</div>
</body></html>

View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html><head>
<title>CSS Filters Animation: Blur Reference</title>
<link href="mailto:takeshimiya@gmail.com" rel="author" title="Gunther Brunner">
<link href="mailto:dschulze@adobe.com" rel="reviewer" title="Dirk Schulze">
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck">
<style type="text/css">
.square {
width: 100px;
height: 100px;
background: blue;
filter: blur(10px);
}
</style>
</head>
<body>
<p>You should see a blurred rectangle.</p>
<div class="square"></div>
</body></html>

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html><head>
<title>CSS Filters Animation: Brightness Reference</title>
<link href="mailto:takeshimiya@gmail.com" rel="author" title="Gunther Brunner">
<link href="mailto:dschulze@adobe.com" rel="reviewer" title="Dirk Schulze">
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck">
<style type="text/css">
.square {
width: 100px;
height: 100px;
background: blue;
filter: brightness(50%);
}
</style>
</head>
<body>
<p>You should see a dark blue rectangle. Neither black nor blue.</p>
<div class="square"></div>
</body></html>

View file

@ -0,0 +1,36 @@
<!DOCTYPE html>
<html><head>
<title>CSS Filters Animation: Combined filters 001 Reference</title>
<link href="mailto:takeshimiya@gmail.com" rel="author" title="Gunther Brunner">
<link href="mailto:dschulze@adobe.com" rel="reviewer" title="Dirk Schulze">
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck">
<style type="text/css">
.square {
width: 100px;
height: 100px;
background: black;
filter:
blur(10px)
brightness(50%)
sepia(50%)
grayscale(50%)
saturate(50%)
hue-rotate(45deg)
invert(50%)
opacity(50%)
}
</style>
</head>
<body>
<p>You should see a gray blurred rectangle.</p>
<div class="square"></div>
</body></html>

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html><head>
<title>CSS Filters Animation: Contrast Reference</title>
<link href="mailto:takeshimiya@gmail.com" rel="author" title="Gunther Brunner">
<link href="mailto:dschulze@adobe.com" rel="reviewer" title="Dirk Schulze">
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck">
<style type="text/css">
.square {
width: 100px;
height: 100px;
background: black;
filter: contrast(50%);
}
</style>
</head>
<body>
<p>You should see a gray rectangle. Neither black nor white.</p>
<div class="square"></div>
</body></html>

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html><head>
<title>CSS Filters Animation: Drop Shadow Reference</title>
<link href="mailto:takeshimiya@gmail.com" rel="author" title="Gunther Brunner">
<link href="mailto:dschulze@adobe.com" rel="reviewer" title="Dirk Schulze">
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck">
<style type="text/css">
.square {
width: 100px;
height: 100px;
background: blue;
filter: drop-shadow(15px 15px 0px gray);
}
</style>
</head>
<body>
<p>You should see a blue rectangle in top of a gray one.</p>
<div class="square"></div>
</body></html>

View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html><head>
<title>CSS Filters Animation: Blur Reference</title>
<link href="mailto:takeshimiya@gmail.com" rel="author" title="Gunther Brunner">
<link href="mailto:dschulze@adobe.com" rel="reviewer" title="Dirk Schulze">
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck">
<style type="text/css">
.square {
width: 100px;
height: 100px;
background: blue;
filter: grayscale(50%);
}
</style>
</head>
<body>
<p>You should see a dark blue rectangle.</p>
<div class="square"></div>
</body></html>

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html><head>
<title>CSS Filters Animation: Hue-rotate Reference</title>
<link href="mailto:takeshimiya@gmail.com" rel="author" title="Gunther Brunner">
<link href="mailto:dschulze@adobe.com" rel="reviewer" title="Dirk Schulze">
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck">
<style type="text/css">
.square {
width: 100px;
height: 100px;
background: blue;
filter: hue-rotate(45deg);
}
</style>
</head>
<body>
<p>You should see a violet rectangle. Neither red nor blue.</p>
<div class="square"></div>
</body></html>

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html><head>
<title>CSS Filters Animation: Invert Reference</title>
<link href="mailto:takeshimiya@gmail.com" rel="author" title="Gunther Brunner">
<link href="mailto:dschulze@adobe.com" rel="reviewer" title="Dirk Schulze">
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck">
<style type="text/css">
.square {
width: 100px;
height: 100px;
background: black;
filter: invert(50%);
}
</style>
</head>
<body>
<p>You should see a gray rectangle. Neither black nor white.</p>
<div class="square"></div>
</body></html>

View file

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html><head>
<title>CSS Filters Animation: Opacity Reference</title>
<link href="mailto:takeshimiya@gmail.com" rel="author" title="Gunther Brunner">
<link href="mailto:dschulze@adobe.com" rel="reviewer" title="Dirk Schulze">
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck">
<style type="text/css">
.square {
width: 100px;
height: 100px;
background: black;
filter: opacity(50%);
}
</style>
</head>
<body>
<p>You should see a gray rectangle. Neither black nor white.</p>
<div class="square"></div>
</body></html>

View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html><head>
<title>CSS Filters Animation: Saturate Reference</title>
<link href="mailto:takeshimiya@gmail.com" rel="author" title="Gunther Brunner">
<link href="mailto:dschulze@adobe.com" rel="reviewer" title="Dirk Schulze">
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck">
<style type="text/css">
.square {
width: 100px;
height: 100px;
background: #f4fbff;
filter: saturate(2500%);
}
</style>
</head>
<body>
<p>You should see a light-blue rectangle. Neither cyan nor white.</p>
<div class="square"></div>
</body></html>

View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html><head>
<title>CSS Filters Animation: Sepia Reference</title>
<link href="mailto:takeshimiya@gmail.com" rel="author" title="Gunther Brunner">
<link href="mailto:dschulze@adobe.com" rel="reviewer" title="Dirk Schulze">
<link href="mailto:rhauck@adobe.com" rel="reviewer" title="Rebecca Hauck">
<style type="text/css">
.square {
width: 100px;
height: 100px;
background: blue;
filter: sepia(50%);
}
</style>
</head>
<body>
<p>You should see a dark blue rectangle.</p>
<div class="square"></div>
</body></html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 135 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 224 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

View file

@ -0,0 +1,29 @@
CSS Global Support Directory
============================
This directory contains common support files (such as images and external
style sheets). These are sync'ed into the support directories of all our
test suites. If you have test-suite-specific support files, please add
them to the appropriate test-suite-specific support/ directory.
If you add to a support/ directory, please run the tools/supportprop.py
script from the top of the repository to cascade support files into the
lower-level support directories.
Description of the Common Support File Collection
-------------------------------------------------
The 1x1-* images are all exactly one pixel.
The swatch-* images all use 15x15 cells.
The square-* images all use 15x15 cells with one pixel borders.
The pattern-* images use cells of various sizes:
pattern-gg-gr.png 20x20
pattern-grg-rgr-grg.png 20x20
pattern-rgr-grg-rgr.png 20x20
pattern-tr.png 15x15
pattern-grg-rrg-rgg.png 15x15

View file

@ -0,0 +1 @@
.a { color: green; }

View file

@ -0,0 +1,80 @@
/* Duration classes */
.once {
animation-duration: 2s;
animation-timing-function: linear;
animation-iteration-count: 1;
}
.infinite {
animation-duration: 2s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
.infinite-reversed {
animation-duration: 2s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
.fast {
animation-duration: 0.5s;
}
/* Animation declarations */
@keyframes pulse {
from {
opacity: 1;
}
to {
opacity: 0.25;
}
}
@keyframes spin {
from {
transform: rotateY(0);
}
to {
transform: rotateY(360deg);
}
}
@keyframes rotate {
from {
transform: rotateZ(45deg);
}
to {
transform: rotateZ(405deg);
}
}
@keyframes slant {
from {
transform: rotate3d(0.23, 1.2, 0.83, 40deg);
}
to {
transform: rotate3d(1, 0.75, 1.3, 240deg);
}
}
/* Animation classes */
.pulse {
animation-name: pulse;
}
.spin {
animation-name: spin;
}
.rotate {
animation-name: rotate;
}
.slant {
animation-name: slant;
}

View file

@ -0,0 +1 @@
.b { color: green; }

View file

@ -0,0 +1 @@
.c { color: red; }

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -0,0 +1 @@
.import { color: green; }

View file

@ -0,0 +1 @@
.import { color: red; }

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 223 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 691 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 671 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 760 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 757 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB