This repository has been archived by the owner on Dec 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #335 from biqing/master
CSS Shapes Tests: Circle - invalid r values
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
contributors/ttwf_shenzhen/css-shapes/biqing/submitted/shape-outside-invalid-circle-001.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!DOCTYPE html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>CSS Shapes Tests: Circle - invalid r values</title> | ||
<link rel="author" title="biqing" href="biqing.kwok@qq.com"> | ||
<link rel="help" href="http://www.w3.org/TR/css-shapes/#supported-basic-shapes"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<link rel="stylesheet" href="/resources/testharness.css"> | ||
<meta name="flags" content="dom"> | ||
<meta name="assert" content="shape-outside declaration is invalid if circle shape function has an invalid r parameter"> | ||
<style type="text/css"> | ||
.circle { | ||
float: left; | ||
width: 100px; | ||
height: 100px; | ||
} | ||
#circle1 { | ||
shape-outside: circle(50px, 50px, auto); | ||
} | ||
#circle2 { | ||
shape-outside: circle(50px, 50px, inherit); | ||
} | ||
#circle3 { | ||
shape-outside: circle(50px, 50px, #FFFFFF); | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="log"></div> | ||
|
||
<div class="circle" id="circle1"></div> | ||
<div class="circle" id="circle2"></div> | ||
<div class="circle" id="circle3"></div> | ||
|
||
<script> | ||
|
||
test(function() { | ||
assert_true(getComputedStyle(document.getElementById('circle1')).shapeOutside == 'auto'); | ||
assert_true(getComputedStyle(document.getElementById('circle2')).shapeOutside == 'auto'); | ||
assert_true(getComputedStyle(document.getElementById('circle3')).shapeOutside == 'auto'); | ||
}, 'Circle - invalid r values'); | ||
|
||
</script> | ||
</body> | ||
</html> |