Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Impl cm postfix #723

Merged
merged 4 commits into from Aug 20, 2013
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Add CSSUnit testcase

  • Loading branch information
recrack committed Aug 20, 2013
commit fbf058c500dcc1066b591c9e5be8de5a95a33704
@@ -0,0 +1,57 @@
<html>
<head>
<style type="text/css">
html {
background: white;
color: black;
}
#test_em {
border:1em solid;
border-color:green;
background-color:red;
}
#test_pt {
border:1pt solid;
border-color:green;
background-color:red;
}
#test_px {
border:1px solid;
border-color:pink;
background-color:green;
}
#test_mm {
border:1mm solid;
border-color:red;
background-color:gray;
}
#test_pc {
border:1pc solid;
border-color:yellow;
background-color:gray;
}
#test_cm {
border:1cm solid;
border-color:pink;
background-color:gray;
}
#test_in {
border:1in solid;
border-color:red;
background-color:gray;
}
</style>
</head>
<body>

<div id="test_em"> Hello, 1em </div>
<div id="test_pt"> Hello, 1pt </div>
<div id="test_px"> Hello, 1px </div>
<div id="test_mm"> Hello, 1mm </div>
<div id="test_pc"> Hello, 1pc </div>
<div id="test_cm"> Hello, 1cm </div>
<div id="test_in"> Hello, 1in </div>

</body>
</html>

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.