blob: d8fdb9cec7b49adc48bf59127dcd26a354f486af [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script src="../../resources/js-test-pre.js"></script>
<script>
description('This tests calling setData with a malformed URL in a null origin document. The malformed value should not be readable in another document');
jsTestIsAsync = true;
if (window.internals)
internals.settings.setCustomPasteboardDataEnabled(true);
const iframe = document.createElement('iframe');
document.body.appendChild(iframe);
iframe.src = `data:text/html;charset=utf-8,<!DOCTYPE html>
<button onclick="runTest()">1. Copy</button>
<div><br></div>
<div id="source" oncopy="copy(event)" contenteditable>some text</div>
<div id="destination" onpaste="paste(event)" contenteditable>2. Paste here</div>
<script>
function copy(event) {
event.clipboardData.setData('url', 'hello, world');
event.preventDefault();
}
function paste(event) {
parent.postMessage({
url: event.clipboardData.getData('url'),
types: event.clipboardData.types,
items: Array.from(event.clipboardData.items).map((item) => ({kind: item.kind, type: item.type})),
}, '*');
}
function runTest() {
document.body.getBoundingClientRect();
document.getElementById('source').focus();
document.execCommand('selectAll');
document.execCommand('copy');
document.getElementById('destination').focus();
if (window.testRunner)
document.execCommand('paste');
}
if (window.testRunner)
setTimeout(runTest, 10);
</scri` + 'pt>';
onmessage = (event) => {
urlReadInSameDocument = event.data.url;
shouldBeEqualToString('urlReadInSameDocument', 'hello, world');
typesInSameDocument = event.data.types;
shouldBeEqualToString('JSON.stringify(typesInSameDocument)', '["text/uri-list"]');
itemsInSameDocument = event.data.items;
shouldBeEqualToString('JSON.stringify(itemsInSameDocument)', '[{"kind":"string","type":"text/uri-list"}]');
document.getElementById('destination').focus();
if (window.testRunner)
document.execCommand('paste');
}
function doPaste(event) {
shouldBeEqualToString('event.clipboardData.getData("url")', '');
shouldBeEqualToString('JSON.stringify(event.clipboardData.types)', '[]');
shouldBeEqualToString('JSON.stringify(Array.from(event.clipboardData.items).map((item) => ({kind: item.kind, type: item.type})))', '[]');
document.getElementById('destination').remove();
finishJSTest();
}
</script>
<div id="destination" onpaste="doPaste(event)" contenteditable>3. Paste here</div>
<script src="../../resources/js-test-post.js"></script>
</body>
</html>