mirror of
https://github.com/servo/servo
synced 2026-05-10 17:12:23 +02:00
17 lines
365 B
HTML
17 lines
365 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
</head>
|
|
<body>
|
|
<dialog></dialog>
|
|
<script>
|
|
test(function() {
|
|
dialog = document.querySelector('dialog')
|
|
assert_true(dialog instanceof HTMLDialogElement);
|
|
}, "The DIALOG element should be recognized");
|
|
</script>
|
|
</body>
|
|
</html>
|