Update web-platform-tests to revision 58eb04cecbbec2e18531ab440225e38944a9c444
3
tests/wpt/web-platform-tests/css/css-page-3/OWNERS
Normal file
|
@ -0,0 +1,3 @@
|
|||
@plinss
|
||||
@fantasai
|
||||
@SimonSapin
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: forced page breaks for different page values</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/CSS21/page.html#page-break-props"/>
|
||||
<meta name="assert" content="A page break MUST occur in the vertical margin between block boxes if the last line box above this margin and the first one below it do not have the same value for 'page'."/>
|
||||
<meta name="flags" content="paged" />
|
||||
<style type="text/css">
|
||||
@page {size: portrait;}
|
||||
@page breaker {size: portrait;}
|
||||
* {margin: 0;}
|
||||
div {page: breaker;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p>When printed, this test requires two pages.</p>
|
||||
<div>This sentence must appear on a new page.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: Page Box Background Coverage</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-properties"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="The page background covers the entire page box, including the page margins."/>
|
||||
<style type="text/css">
|
||||
@page {
|
||||
background-color:#ccffcc;
|
||||
margin:25%;
|
||||
border: 2pt solid;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div>This page must be covered by a pale green background. The background either completely covers the page, or leaves only a small strip of white where the printer can't reach.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: @page border shorthand (absolute units)</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-properties"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-box-page-rule"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="A border declaration within the @page context applies to the page box."/>
|
||||
<style type="text/css"><![CDATA[
|
||||
@page {
|
||||
border: 1in solid green;
|
||||
}
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
<div>This paragraph must appear inside a box with a 1in thick green border.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: margin box referencing document counters</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#populating-margin-boxes"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="The value of the counter at the beginning of page processing must be used by default. "/>
|
||||
<style type="text/css"><![CDATA[
|
||||
body {counter-reset: chapter;}
|
||||
div.chapter {counter-increment: chapter;}
|
||||
@page {
|
||||
@top-center { content: "Chapter " counter(chapter); }
|
||||
}
|
||||
div.section {page-break-before: always;}
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="chapter">This paragaraph should appear on the first page, which should say "Chapter 0" at the top. A second page with "Chapter 4" at the top should also print.</div>
|
||||
<div class="chapter"></div>
|
||||
<div class="chapter"></div>
|
||||
|
||||
<div class="section chapter">This paragaraph should appear on the second page, which should say "Chapter 4" at the top.</div>
|
||||
<div class="chapter"></div>
|
||||
<div class="chapter"></div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,23 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: @page margin shorthand using ems</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-properties"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-box-page-rule"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="A margin declaration within the @page context applies to the page box."/>
|
||||
<meta name="assert" content="A margin expressed in ems uses the page context's font."/>
|
||||
<style type="text/css"><![CDATA[
|
||||
@page {
|
||||
font-size: 18pt;
|
||||
margin: 2em;
|
||||
}
|
||||
html, body {background: #ccc;}
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
<p>This paragraph must appear inside a grey box. The box should be 0.5in from the page edge on all sides.</p>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: Page Selector Grammar - @page auto</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#syntax-page-selector"/>
|
||||
<meta name="flags" content="paged invalid" />
|
||||
<style type="text/css"><![CDATA[
|
||||
@page { size: portrait; }
|
||||
@page auto { size: landscape; }
|
||||
div { page: auto }
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
<div>This paragraph should be printed in portrait layout: the short sides of the page should be top and bottom.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: @page width and height</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-box-page-rule"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-properties"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="The 'width' and 'height' properties do not apply to a page box."/>
|
||||
<style type="text/css"><![CDATA[
|
||||
@page {
|
||||
width: 1in;
|
||||
height: 1in;
|
||||
border: 2pt solid black;
|
||||
}
|
||||
div.biggerBox {
|
||||
width: 2in;
|
||||
height: 2in;
|
||||
border: 1pt solid black;
|
||||
}
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
<div>This page should have a black border. The area inside the border should be larger than 1in×1in. The box below should be 2in×2in; and fit on the page.</div>
|
||||
<div class="biggerBox"></div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: Page Size - landscape</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-size"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="The 'landscape' value of the 'size' property specifies that the page's content be printed in landscape orientation: the longer sides of the page box are horizontal."/>
|
||||
<style type="text/css">
|
||||
|
||||
@page {
|
||||
size:landscape;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div>This page must be printed in landscape orientation: the longer edges of the page must be horizontal.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: Page Size - portrait</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-size"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="The 'portrait' value of the 'size' property specifies that the page's content be printed in portrait orientation: the shorter sides of the page box are horizontal."/>
|
||||
<style type="text/css">
|
||||
|
||||
@page {
|
||||
size:portait;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div>This page must be printed in portrait orientation: the shorter edges of the page must be horizontal.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: @page size A5</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-size-prop"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="The 'A5' value of the 'size' property specifies that the page box's width be 148mm and its height 210mm."/>
|
||||
<style type="text/css"><![CDATA[
|
||||
@page {
|
||||
size: A5;
|
||||
border: 2pt solid black;
|
||||
margin: 20mm;
|
||||
}
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
<div>If A5 (148mm x 210mm) or larger paper is available, this content should be printed in a black box that has a width of 108mm and a height of 170mm.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: @page size A4</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-size-prop"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="The 'A4' value of the 'size' property specifies that the page box's width be 210m and its height 297mm."/>
|
||||
<style type="text/css"><![CDATA[
|
||||
@page {
|
||||
size: A4;
|
||||
border: 2pt solid black;
|
||||
margin: 20mm;
|
||||
}
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
<div>If A4 (210mm x 297mm) or larger paper is available, this content should be printed in a black box that has a width of 170mm and a height of 257mm.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: @page size A3</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-size-prop"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="The 'A3' value of the 'size' property specifies that the page box's width be 297mm and its height 420mm."/>
|
||||
<style type="text/css"><![CDATA[
|
||||
@page {
|
||||
size: A3;
|
||||
border: 2pt solid black;
|
||||
margin: 20mm;
|
||||
}
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
<div>If A3 (297mm x 420mm) or larger paper is available, this content should be printed in a black box that has a width of 257mm and a height of 380mm.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: @page size B5</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-size-prop"/>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="The 'B5' value of the 'size' property specifies that the page box's width be 176mm and its height 250mm."/>
|
||||
<style type="text/css"><![CDATA[
|
||||
@page {
|
||||
size: B5;
|
||||
border: 2pt solid black;
|
||||
margin: 20mm;
|
||||
}
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
<div>If B5 (176mm x 250mm) or larger paper is available, this content should be printed in a black box that has a width of 136mm and a height of 210mm.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: @page size B4</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-size-prop"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="The 'B4' value of the 'size' property specifies that the page box's width be 250mm and its height 353mm."/>
|
||||
<style type="text/css"><![CDATA[
|
||||
@page {
|
||||
size: B4;
|
||||
border: 2pt solid black;
|
||||
margin: 20mm;
|
||||
}
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
<div>If B4 (250mm x 353mm) or larger paper is available, this content should be printed in a black box that has a width of 210mm and a height of 313mm.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: @page size Letter</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-size-prop"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="The 'letter' value of the 'size' property specifies that the page box's width be 8.5in and its height 11in."/>
|
||||
<style type="text/css"><![CDATA[
|
||||
@page {
|
||||
size: letter;
|
||||
border: 2pt solid black;
|
||||
margin: 1in;
|
||||
}
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
<div>If letter-sized (8.5in x 11in) or larger paper is available, this content should be printed in a black box that has a width of 6.5 inches and a height of 9 inches.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: @page size Legal</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-size-prop"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="The 'legal' value of the 'size' property specifies that the page box's width be 8.5in and its height 14in."/>
|
||||
<style type="text/css"><![CDATA[
|
||||
@page {
|
||||
size: legal;
|
||||
border: 2pt solid black;
|
||||
margin: 1in;
|
||||
}
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
<div>If legal-sized (8.5in x 14in) or larger paper is available, this content should be printed in a black box that has a width of 6.5 inches and a height of 12 inches.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: @page size Ledger</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-size-prop"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="The 'ledger' value of the 'size' property specifies that the page box's width be 11in and its height 17in."/>
|
||||
<style type="text/css"><![CDATA[
|
||||
@page {
|
||||
size: ledger;
|
||||
border: 2pt solid black;
|
||||
margin: 2in;
|
||||
}
|
||||
]]></style>
|
||||
</head>
|
||||
<body>
|
||||
<div>If ledger-sized (11in x 17in) or larger paper is available, this content should be printed in a black box that has a width of 7 inches and a height of 13 inches.</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CSS Test: @page size smaller than paper</title>
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/>
|
||||
<link rel="author" title="Hewlett-Packard Company" href="http://www.hp.com/"/>
|
||||
<link rel="help" href="http://www.w3.org/TR/css3-page/#page-size"/>
|
||||
<meta name="flags" content="paged" />
|
||||
<meta name="assert" content="The computed value of the 'size' property is its specified value."/>
|
||||
<meta name="assert" content="If the page box is smaller than the page size the user agent SHOULD either center the page box on the sheet or position the page box in the upper left corner of the page sheet." />
|
||||
<style type="text/css">
|
||||
@page {
|
||||
margin: 0.5in;
|
||||
border: 2pt solid black;
|
||||
size: 3in 3in;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p>When printed on paper 3 inches x 3 inches or larger, this content should appear in a box whose exterior dimensions are 2 inches x 2 inches. The box should either be centered on the page or positioned in the upper left corner.</p>
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 135 B |
BIN
tests/wpt/web-platform-tests/css/css-page-3/support/1x1-lime.png
Normal file
After Width: | Height: | Size: 135 B |
After Width: | Height: | Size: 109 B |
BIN
tests/wpt/web-platform-tests/css/css-page-3/support/1x1-navy.png
Normal file
After Width: | Height: | Size: 109 B |
BIN
tests/wpt/web-platform-tests/css/css-page-3/support/1x1-red.png
Normal file
After Width: | Height: | Size: 135 B |
After Width: | Height: | Size: 109 B |
After Width: | Height: | Size: 224 B |
After Width: | Height: | Size: 218 B |
After Width: | Height: | Size: 217 B |
|
@ -0,0 +1 @@
|
|||
.a { color: green; }
|
|
@ -0,0 +1 @@
|
|||
.b { color: green; }
|
|
@ -0,0 +1 @@
|
|||
.c { color: red; }
|
BIN
tests/wpt/web-platform-tests/css/css-page-3/support/cat.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
|
@ -0,0 +1 @@
|
|||
.import { color: green; }
|
|
@ -0,0 +1 @@
|
|||
.import { color: red; }
|
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 672 B |
After Width: | Height: | Size: 222 B |
After Width: | Height: | Size: 231 B |
After Width: | Height: | Size: 222 B |
After Width: | Height: | Size: 137 B |
After Width: | Height: | Size: 92 B |
After Width: | Height: | Size: 92 B |
After Width: | Height: | Size: 78 B |
After Width: | Height: | Size: 84 B |
After Width: | Height: | Size: 84 B |
After Width: | Height: | Size: 84 B |
After Width: | Height: | Size: 84 B |
After Width: | Height: | Size: 84 B |
After Width: | Height: | Size: 85 B |
After Width: | Height: | Size: 84 B |
BIN
tests/wpt/web-platform-tests/css/css-page-3/support/test-bl.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
tests/wpt/web-platform-tests/css/css-page-3/support/test-br.png
Normal file
After Width: | Height: | Size: 1 KiB |
After Width: | Height: | Size: 2.4 KiB |
BIN
tests/wpt/web-platform-tests/css/css-page-3/support/test-tl.png
Normal file
After Width: | Height: | Size: 1 KiB |
BIN
tests/wpt/web-platform-tests/css/css-page-3/support/test-tr.png
Normal file
After Width: | Height: | Size: 1.2 KiB |