Update web-platform-tests to revision b'ac590e83f80632559480abda677db69b17f6ece1'

This commit is contained in:
WPT Sync Bot 2021-03-11 08:20:29 +00:00
parent 14fbe153e2
commit 56531f4672
148 changed files with 3092 additions and 1755 deletions

View file

@ -0,0 +1,16 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>tagName in template</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<template><div></div></template>
<div id="log"></div>
<script><![CDATA[
test(function() {
assert_equals(document.getElementsByTagName("template")[0].content.firstChild.tagName, 'div', "tagName case");
}, "tagName case");
]]></script>
</body>
</html>