git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
isContentEditable returns false for `display:none` contenteditable elements, but...
[WebKit-https.git]
/
LayoutTests
/
css3
/
background
/
background-repeat-round-auto1-expected.html
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<style>
5
div
6
{
7
width: 800px;
8
height: 400px;
9
padding: 50px;
10
border: 50px solid transparent;
11
background-image: url(resources/circle.png);
12
background-size: 50px auto;
13
background-repeat: repeat;
14
background-origin: border-box;
15
background-clip: border-box;
16
}
17
</style>
18
</head>
19
20
<body>
21
<div/>
22
</body>
23
24
</html>
25