Merge remote-tracking branch 'origin/tracking' into custom

This commit is contained in:
roytam1 2023-03-06 16:29:00 +08:00
commit eb8748c537
119 changed files with 3277 additions and 1496 deletions

View file

@ -25,10 +25,8 @@
<script>
"use strict";
var host = document.querySelector("#shadow");
if (host.createShadowRoot) {
var root = host.createShadowRoot();
root.innerHTML = "<h3>Shadow DOM</h3><select multiple></select>";
}
var root = host.attachShadow({ mode: "open" });
root.innerHTML = "<h3>Shadow DOM</h3><select multiple></select>";
</script>
</body>
</html>