mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +02:00
17 lines
288 B
HTML
17 lines
288 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="harness.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="foo"></div>
|
|
|
|
<script>
|
|
let test = document.getElementById("foo");
|
|
|
|
is(test.matches("#foo"), true, "test-1");
|
|
is(test.matches("#not-foo"), false, "test-2");
|
|
</script>
|
|
</body>
|
|
</html>
|