git://git.webkit.org
/
WebKit-https.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Web Inspector: Add PrettyPrinter CSS tests
[WebKit-https.git]
/
Source
/
WebInspectorUI
/
Tools
/
PrettyPrinting
/
css-tests
/
calc-expected.css
1
/* CALC EXPRESSIONS */
2
/* FIXME: negative numbers can be improved */
3
div {
4
width: -webkit-calc(100% + 80px + 1em);
5
}
6
7
div {
8
width: -webkit-calc(100% / 6);
9
}
10
11
div {
12
width: -webkit-calc(10% * 6);
13
}
14
15
div {
16
width: calc(-960px + 75%);
17
}
18
19
div {
20
width: calc(100vw-50vw);
21
}
22