Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sanketj committed Dec 12, 2023
2 parents 0f4ed74 + 103b344 commit d18c5c9
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
10 changes: 10 additions & 0 deletions clipboard/async-clipboard-nested-iframe-write-inner-frame.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<body>
<script>
window.setTimeout(() => {
navigator.clipboard.writeText("Some text");
}, 3000);
</script>
</body>
</html>
8 changes: 8 additions & 0 deletions clipboard/async-clipboard-nested-iframe-write.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<body>
<iframe src="http://sanketj.github.io/web-dev-samples/clipboard/async-clipboard-nested-iframe-write-inner-frame.html" width="500px" height="500px"></iframe>
<script>
</script>
</body>
</html>
10 changes: 10 additions & 0 deletions spellcheck-inheritance.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html spellcheck="false">
<body>
<div contenteditable="true" style="border:2px black solid"></div>
<br/>
<div contenteditable="true" style="border:2px black solid" spellcheck="true"></div>
<script>
</script>
</body>
</html>

0 comments on commit d18c5c9

Please sign in to comment.