Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /compat/webkit-gradient-comma.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta name="assert" content="Negative radii values are invalid.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(function() {
assert_true(CSS.supports("background-image", "-webkit-radial-gradient(1px 2px, 3% 4%, red, blue)"));
}, '-webkit-radial-gradient accepts comma before color stops.');
test(function() {
assert_false(CSS.supports("background-image", "-webkit-radial-gradient(1px 2px, 3% 4% red, blue)"));
}, '-webkit-radial-gradient rejects missing comma before color stops.');
</script>