chromium/third_party/blink/web_tests/virtual/blur-on-remove/fast/dom/adopt-node-prevented.html

<!DOCTYPE html>
<html>
<head>
<script src="../../../../resources/js-test.js"></script>
</head>
<body>
  <div id="newParent"></div>
  <a href="#" id="target"></a>
<script>
description("Test that adoptNode fails safely if prevented by a DOM mutation.");

function run() {
    newParent = document.getElementById("newParent");
    target = document.getElementById("target");
    target.addEventListener("blur", function () { newParent.appendChild(target); }, false);
    target.focus();
    var anotherDocument = document.implementation.createDocument("", "", null);

    try { anotherDocument.adoptNode(target); } catch(e) {}
    shouldBe("target.ownerDocument.location", "document.location");
}

document.addEventListener("DOMContentLoaded", run, false);
</script>
</body>
</html>