mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
35 lines
No EOL
1 KiB
HTML
35 lines
No EOL
1 KiB
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<meta charset="UTF-8">
|
|
<meta content="dom" name="flags">
|
|
<meta content="shape-outside declaration is invalid if cy for circle function is invalid" name="assert">
|
|
<title>CSS Shapes Test - Circle - invalid cy value</title>
|
|
<link href="mailto:noonnightstorm@gmail.com" rel="author" title="noonnightstorm">
|
|
<link href="mailto:stearns@adobe.com" rel="reviewer" title="Alan Stearns">
|
|
<link href="http://www.w3.org/TR/css-shapes-1/#supported-basic-shapes" rel="help">
|
|
<link href="http://www.w3.org/TR/css-shapes-1/#funcdef-circle" rel="help">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
|
|
<style>
|
|
#shape{
|
|
width: 300px;
|
|
height: 300px;
|
|
shape-outside: circle(50% at 50% 50);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="log"></div>
|
|
|
|
<div id="shape"></div>
|
|
|
|
<script>
|
|
var obj = document.getElementById('shape');
|
|
var cy = getComputedStyle(obj).shapeOutside;
|
|
test(function() {assert_equals(cy, "none", "declaration should be Invalid")});
|
|
</script>
|
|
|
|
|
|
</body></html> |