Skip to content

Commit

Permalink
Update test.html
Browse files Browse the repository at this point in the history
  • Loading branch information
nuxodin committed May 30, 2022
1 parent 935985e commit 58c5c10
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
<meta charset="UTF-8">
<title>Level.css TEST</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./mod.js"></script>
<script src="./htmlfills.js"></script>
<script src="./mod.js" xtype=module></script>
<script src="./htmlfills.js" type=module></script>
</head>
<body>



<script style="display:block; white-space: pre-wrap; background:#eee; margin:1rem; padding:1rem;">
<script style="display:block; white-space: pre-wrap; background:#eee; margin:1rem; padding:1rem;" type=module>

var body = document.body;
const body = document.body;

body.innerHTML += 'no polyfill loaded so far.<br>';

Expand All @@ -39,7 +39,7 @@

/* is connected tests */

div = document.createElement('div');
const div = document.createElement('div');
console.log(div.isConnected);
document.body.appendChild(div)
console.log(div.isConnected);
Expand Down

0 comments on commit 58c5c10

Please sign in to comment.