Skip to content

Commit

Permalink
docs: feature detection result shown on the demo page
Browse files Browse the repository at this point in the history
  • Loading branch information
mfranzke committed Jul 24, 2021
1 parent 009b8c3 commit 89870c7
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
16 changes: 16 additions & 0 deletions demos/ie9/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,22 @@ <h1>
>
demo page
</h1>
<p>
<strong
>hint: Your browser
<script type="text/javascript">
document.write(
"list" in document.createElement("input") &&
Boolean(
document.createElement("datalist") && window.HTMLDataListElement
)
? "supports"
: "doesn't support"
);
</script>
the native datalist element.</strong
>
</p>
<form action="index.html" method="get">
<h2>Introduction - Internet Explorer 9</h2>

Expand Down
16 changes: 16 additions & 0 deletions demos/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,22 @@ <h1>
>
demo page
</h1>
<p>
<strong
>hint: Your browser
<script type="text/javascript">
document.write(
"list" in document.createElement("input") &&
Boolean(
document.createElement("datalist") && window.HTMLDataListElement
)
? "supports"
: "doesn't support"
);
</script>
the native datalist element.</strong
>
</p>
<form action="index.html" method="get">
<h2>Basis</h2>

Expand Down

0 comments on commit 89870c7

Please sign in to comment.