mirror of
https://github.com/servo/servo.git
synced 2025-07-31 03:00:29 +01:00
16 lines
288 B
HTML
16 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>
|