Skip to content
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.

Commit

Permalink
Remove trailing whitespace.
Browse files Browse the repository at this point in the history
Again excludes vendor-import and work-in-progress.
  • Loading branch information
gsnedders committed Dec 7, 2015
1 parent f106b6f commit 55a4412
Show file tree
Hide file tree
Showing 3,133 changed files with 11,342 additions and 11,342 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
36 changes: 18 additions & 18 deletions CONTRIBUTING.md
@@ -1,33 +1,33 @@
Grant of License
----------------

By contributing to this repository, you and the company you
represent, if the company holds any copyrights in the contribution,
By contributing to this repository, you and the company you
represent, if the company holds any copyrights in the contribution,
grant to the W3C a perpetual, non-exclusive, royalty-free, world-
wide right and license under all of your copyrights in this
contribution to copy, publish, use, and modify the contribution and
wide right and license under all of your copyrights in this
contribution to copy, publish, use, and modify the contribution and
to distribute the contribution under a BSD License or one with
more restrictive terms, as well as a right and license of the same
scope to any derivative works prepared by the W3C and based on or
incorporating all or part of the contribution. You further agree
that any derivative works of this contribution prepared by the W3C
more restrictive terms, as well as a right and license of the same
scope to any derivative works prepared by the W3C and based on or
incorporating all or part of the contribution. You further agree
that any derivative works of this contribution prepared by the W3C
shall be solely owned by the W3C.

You state, to the best of your knowledge, that you, or the company
You state, to the best of your knowledge, that you, or the company
you represent, have all rights necessary to contribute the materials.

W3C will retain attribution of initial authorship to you. The W3C
W3C will retain attribution of initial authorship to you. The W3C
makes no a-priori commitment to support or distribute contributions.

Disclaimer
----------

All content from this repository is provided as is, and W3C makes no
representations or warranties, express or implied, including, but
not limited to, warranties of merchantability, fitness for a
particular purpose, non-infringement, or title; nor that the
contents of this repository are suitable for any purpose. We make no
representations, express or implied, that the content of this
repository or the use thereof indicates conformance to a
specification. All content is provided as-is to help reach
interoperability.
representations or warranties, express or implied, including, but
not limited to, warranties of merchantability, fitness for a
particular purpose, non-infringement, or title; nor that the
contents of this repository are suitable for any purpose. We make no
representations, express or implied, that the content of this
repository or the use thereof indicates conformance to a
specification. All content is provided as-is to help reach
interoperability.
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
W3C CSS Test Suite Repository
-----------------------------

This repository contains top level directories for all of CSS specs for
which we currently have tests. Place tests in the appropriate directory based
on the first rel="help" link in the test. If you are writing tests for a spec
Expand Down
4 changes: 2 additions & 2 deletions compositing-1/compositing_simple_div-ref.html
Expand Up @@ -10,11 +10,11 @@
<style>
#b{background-color:rgb(0,255,0); width:100px;height:100px
}

</style>
</head>
<body>

<div id="b"></div>
</body>
</html>
</html>
4 changes: 2 additions & 2 deletions compositing-1/compositing_simple_div.html
Expand Up @@ -10,11 +10,11 @@
<style>
#b{background-color:rgb(255,0,255); mix-blend-mode:difference; width:100px;height:100px
}

</style>
</head>
<body>

<div id="b"></div>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion compositing-1/text-with-svg-background.html
Expand Up @@ -25,7 +25,7 @@
<script>
var SVG_NS = 'http://www.w3.org/2000/svg';
var modes = [
'multiply', 'screen', 'overlay', 'darken', 'lighten', 'color-dodge',
'multiply', 'screen', 'overlay', 'darken', 'lighten', 'color-dodge',
'color-burn', 'hard-light', 'soft-light', 'difference', 'exclusion'
];
var mode;
Expand Down
4 changes: 2 additions & 2 deletions css-animations-1/animation-direction-001.html
Expand Up @@ -10,9 +10,9 @@
<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation-iteration-count">
<meta name="flags" content="animated">
<meta name="assert" content="When animation-direction is set to alternate,
animation cycle will iteration that are
animation cycle will iteration that are
odd counts are played in the normal direction,
and the animation cycle iterations that are
and the animation cycle iterations that are
even counts are played in a reverse direction.">
<style>
div {
Expand Down
2 changes: 1 addition & 1 deletion css-animations-1/animation-direction-002.html
Expand Up @@ -17,7 +17,7 @@
animation-duration: 10s;
animation-direction: normal;
animation-iteration-count: infinite;

background-color: blue;
height: 100px;
width: 100px;
Expand Down
2 changes: 1 addition & 1 deletion css-animations-1/animation-display.html
Expand Up @@ -38,7 +38,7 @@
<div>Filler Text</div>
<script>
var div = document.getElementsByTagName("div");

setTimeout(function() {
div[0].style.display = "none";
}, 5000);
Expand Down
2 changes: 1 addition & 1 deletion css-animations-1/animation-fill-mode-001.html
Expand Up @@ -14,7 +14,7 @@
animation-name: sample;
animation-duration: 5s;
animation-fill-mode: none;

background-color: blue;
height: 100px;
width: 100px;
Expand Down
6 changes: 3 additions & 3 deletions css-animations-1/animation-fill-mode-002.html
Expand Up @@ -7,15 +7,15 @@
<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation-duration">
<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation-fill-mode">
<meta name="flags" content="animated">
<meta name="assert" content="When animation-fill-mode is set to forwards,
animation will apply the property values for the time the amination ended
<meta name="assert" content="When animation-fill-mode is set to forwards,
animation will apply the property values for the time the amination ended
after the animation ends.">
<style>
div {
animation-name: sample;
animation-duration: 5s;
animation-fill-mode: forwards;

background-color: blue;
height: 100px;
width: 100px;
Expand Down
2 changes: 1 addition & 1 deletion css-animations-1/animation-fill-mode-003.html
Expand Up @@ -19,7 +19,7 @@
animation-duration: 5s;
animation-delay: 5s;
animation-fill-mode: backwards;

background-color: blue;
height: 100px;
width: 100px;
Expand Down
2 changes: 1 addition & 1 deletion css-animations-1/animation-fill-mode-004.html
Expand Up @@ -16,7 +16,7 @@
animation-duration: 5s;
animation-delay: 5s;
animation-fill-mode: both;

background-color: blue;
height: 100px;
width: 100px;
Expand Down
2 changes: 1 addition & 1 deletion css-animations-1/animation-play-state-001.html
Expand Up @@ -41,7 +41,7 @@
<body>
<p>
Test passes if there is a filled blue square with 'Filler Text',
which starts moving right to left along the yellow bar,
which starts moving right to left along the yellow bar,
and pauses in the middle after about 2 seconds' animation.
</p>
<div id="test-animation-paused">Filler Text</div>
Expand Down
2 changes: 1 addition & 1 deletion css-animations-1/animation-timing-function-004.html
Expand Up @@ -9,7 +9,7 @@
<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation-timing-function">
<meta name="flags" content="animated">
<meta name="assert" content="Check that animation-timing-function is set to ease-in-out,
animation will start slow, gain acceleration in the middel
animation will start slow, gain acceleration in the middel
and again slow down at the end.">
<style>
div {
Expand Down
4 changes: 2 additions & 2 deletions css-animations-1/animation-timing-function-005.html
Expand Up @@ -9,7 +9,7 @@
<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation-timing-function">
<meta name="flags" content="animated">
<meta name="assert" content="Check that animation-timing-function is set to ease-out,
animation will start with higher (than the normal) speed
animation will start with higher (than the normal) speed
and relatively slow down as time progresses.">
<style>
div {
Expand All @@ -35,7 +35,7 @@
<body>
<p>
Test passes if there is a filled blue square with 'Filler Text',
which starts moving from right to left; animation starts and relatively
which starts moving from right to left; animation starts and relatively
slows down as time progresses.
</p>
<div>Filler Text</div>
Expand Down
4 changes: 2 additions & 2 deletions css-animations-1/animation-timing-function-006.html
Expand Up @@ -8,8 +8,8 @@
<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation-duration">
<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation-timing-function">
<meta name="flags" content="animated">
<meta name="assert" content="When animation-timing-function is set to linear,
animation will progress over one cycle of its duration
<meta name="assert" content="When animation-timing-function is set to linear,
animation will progress over one cycle of its duration
with constant speed.">
<style>
div {
Expand Down
14 changes: 7 additions & 7 deletions css-backgrounds-3/background-331.html
Expand Up @@ -24,37 +24,37 @@
assert_equals(cs.getPropertyValue("background-image"),
"none", "background initial value for background-image");
}, "background_initial_image");

test(function() {
assert_equals(cs.getPropertyValue("background-position"),
"0% 0%", "background initial value for background-position");
}, "background_initial_position");

test(function() {
assert_equals(cs.getPropertyValue("background-size"),
"auto", "background initial value for background-size");
}, "background_initial_size");

test(function() {
assert_equals(cs.getPropertyValue("background-repeat"),
"repeat", "background initial value for background-repeat");
}, "background_initial_repeat");

test(function() {
assert_equals(cs.getPropertyValue("background-attachment"),
"scroll", "background initial value for background-attachment");
}, "background_initial_attachment");

test(function() {
assert_equals(cs.getPropertyValue("background-origin"),
"padding-box", "background initial value for background-origin");
}, "background_initial_origin");

test(function() {
assert_equals(cs.getPropertyValue("background-clip"),
"border-box", "background initial value for background-clip");
}, "background_initial_clip");

test(function() {
assert_equals(cs.getPropertyValue("background-color"),
"transparent", "background initial value for background-color");
Expand Down
14 changes: 7 additions & 7 deletions css-backgrounds-3/background-332.html
Expand Up @@ -24,37 +24,37 @@
assert_equals(cs.getPropertyValue("background-image"),
"url(support/60x60-green.png)", "background specified value for background-image");
}, "background_specified_image");

test(function() {
assert_equals(cs.getPropertyValue("background-position"),
"40% 50%", "background specified value for background-position");
}, "background_specified_position");

test(function() {
assert_equals(cs.getPropertyValue("background-size"),
"10em 10em", "background specified value for background-size");
}, "background_specified_size");

test(function() {
assert_equals(cs.getPropertyValue("background-repeat"),
"round round", "background specified value for background-repeat");
}, "background_specified_repeat");

test(function() {
assert_equals(cs.getPropertyValue("background-attachment"),
"fixed", "background specified value for background-attachment");
}, "background_specified_attachment");

test(function() {
assert_equals(cs.getPropertyValue("background-origin"),
"border-box", "background specified value for background-origin");
}, "background_specified_origin");

test(function() {
assert_equals(cs.getPropertyValue("background-clip"),
"border-box", "background specified value for background-clip");
}, "background_specified_clip");

test(function() {
assert_equals(cs.getPropertyValue("background-color"),
"gray", "background specified value for background-color");
Expand Down
14 changes: 7 additions & 7 deletions css-backgrounds-3/background-333.html
Expand Up @@ -24,37 +24,37 @@
assert_equals(cs.getPropertyValue("background-image"),
"none", "background initial value for background-image");
}, "background_specified_color_image");

test(function() {
assert_equals(cs.getPropertyValue("background-position"),
"0% 0%", "background initial value for background-position");
}, "background_specified_color_position");

test(function() {
assert_equals(cs.getPropertyValue("background-size"),
"auto", "background initial value for background-size");
}, "background_specified_color_size");

test(function() {
assert_equals(cs.getPropertyValue("background-repeat"),
"repeat", "background initial value for background-repeat");
}, "background_specified_color_repeat");

test(function() {
assert_equals(cs.getPropertyValue("background-attachment"),
"scroll", "background initial value for background-attachment");
}, "background_specified_color_attachment");

test(function() {
assert_equals(cs.getPropertyValue("background-origin"),
"padding-box", "background initial value for background-origin");
}, "background_specified_color_origin");

test(function() {
assert_equals(cs.getPropertyValue("background-clip"),
"border-box", "background initial value for background-clip");
}, "background_specified_color_clip");

test(function() {
assert_equals(cs.getPropertyValue("background-color"),
"red", "background specified value for background-color");
Expand Down
4 changes: 2 additions & 2 deletions css-backgrounds-3/background-334.html
Expand Up @@ -6,8 +6,8 @@
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="help" href="http://www.w3.org/TR/css3-background/#the-background" title="3.10. Backgrounds Shorthand: the 'background' property">
<link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <!-- 2012-11-09 -->
<!--
http://www.gtalbot.org/BrowserBugsSection/review/background-334-review.html
<!--
http://www.gtalbot.org/BrowserBugsSection/review/background-334-review.html
-->
<link rel="match" href="reference/background-334-ref.xht">
<meta name="flags" content="image">
Expand Down
4 changes: 2 additions & 2 deletions css-backgrounds-3/background-335.html
Expand Up @@ -19,12 +19,12 @@
<div id="test"></div>
<script>
var cs = getComputedStyle(document.getElementById("test"), null);

test(function() {
assert_equals(cs.getPropertyValue("background-origin"),
"content-box", "background specified value for background-origin");
}, "background_specified_box_one_origin");

test(function() {
assert_equals(cs.getPropertyValue("background-clip"),
"content-box", "background specified value for background-clip");
Expand Down
4 changes: 2 additions & 2 deletions css-backgrounds-3/background-336.html
Expand Up @@ -19,12 +19,12 @@
<div id="test"></div>
<script>
var cs = getComputedStyle(document.getElementById("test"), null);

test(function() {
assert_equals(cs.getPropertyValue("background-origin"),
"border-box", "background specified value for background-origin");
}, "background_specified_box_two_origin");

test(function() {
assert_equals(cs.getPropertyValue("background-clip"),
"padding-box", "background specified value for background-clip");
Expand Down

0 comments on commit 55a4412

Please sign in to comment.