summaryrefslogtreecommitdiffstats
path: root/parser/htmlparser/tests/mochitest/test_bug1646140-2.html
blob: 11c370d401e1a52d5101ea34d06b3269f19be579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<meta charset="utf-8">
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<div id="div" contenteditable></div>
<script>
/* globals div svgRanScript */
window.svgRanScript = false;
document.addEventListener("copy", ev => {
  ev.preventDefault();
  ev.clipboardData.setData('text/html', "<svg><style><svg/onload=\"window.svgRanScript=true\">");
});
const o = new MutationObserver(mutations => {
  o.disconnect();
  setTimeout(() => {
    ok(!svgRanScript, "svg onload must not fire");
    SimpleTest.finish()
  });
});
o.observe(div, {childList: true});

SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(() => {
  getSelection().collapse(div);
  SpecialPowers.doCommand(window, "cmd_copy");
  SpecialPowers.doCommand(window, "cmd_paste");
});
</script>