-
Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathcursor-invalid.html
24 lines (23 loc) · 1007 Bytes
/
cursor-invalid.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS UI Level 3: parsing cursor with invalid values</title>
<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-ui-3/#cursor">
<meta name="assert" content="cursor supports only the grammar.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
</head>
<body>
<script>
test_invalid_value("cursor", "en-resize");
test_invalid_value("cursor", 'url("https://example.com/") alias');
test_invalid_value("cursor", '1 2 url("https://example.com/"), copy');
test_invalid_value("cursor", 'url("https://example.com/"), url("https://example.com/") 3, move');
test_invalid_value("cursor", 'url("https://example.com/") 1px 2px, copy');
test_invalid_value("cursor", 'url("https://example.com/"), url("https://example.com/") 3% 4%, move');
</script>
</body>
</html>