Skip to content
Navigation Menu
Toggle navigation
Sign in
Appearance settings
Search or jump to...
Search code, repositories, users, issues, pull requests...
Search syntax tips
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Sign in
Sign up
Appearance settings
Resetting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
web-platform-tests
/
wpt
Public
Notifications
You must be signed in to change notification settings
Fork
3.8k
Star
6k
Code
Issues
1.5k
Pull requests
1.3k
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
wpt
/
css
/
css-backgrounds
/
background-repeat-space-1a.html
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
35 lines (34 loc) · 1.18 KB
master
Breadcrumbs
wpt
/
css
/
css-backgrounds
/
background-repeat-space-1a.html
Copy path
Top
File metadata and controls
Code
Blame
35 lines (34 loc) · 1.18 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html
>
<
html
>
<
head
>
<
meta
charset
="
utf-8
"
>
<
title
>
CSS Background: background-repeat: background image space
</
title
>
<
link
rel
="
author
"
title
="
Ethan Lin
"
href
="
mailto:ethlin@mozilla.com
"
>
<
link
rel
="
author
"
title
="
Mozilla
"
href
="
https://www.mozilla.org
"
>
<
link
rel
="
help
"
href
="
https://www.w3.org/TR/css3-background/#background-repeat
"
>
<
link
rel
="
match
"
href
="
background-repeat-space-1-ref.html
"
>
<
meta
name
="
assert
"
content
="
Test checks whether background-repeat: 'space' works correctly or not.
"
>
<
meta
name
="
fuzzy
"
content
="
maxDifference=0-52; totalPixels=0-8250
"
>
<
style
type
="
text/css
"
>
.
outer
{
width
:
106
px
;
height
:
106
px
;
border
:
1
px
solid black;
background-image
:
url
(support/aqua-yellow-32x32.png);
background-repeat
:
space;
}
.
outer_gradient
{
width
:
106
px
;
height
:
106
px
;
border
:
1
px
solid black;
background-size
:
32
px
32
px
;
background-image
:
linear-gradient
(to top left
,
red
,
green);
background-repeat
:
space;
}
</
style
>
</
head
>
<
body
>
<
div
class
="
outer
"
>
</
div
>
<
div
class
="
outer_gradient
"
>
</
div
>
</
body
>
</
html
>
You can’t perform that action at this time.