blob: ddc1d161e1d99fa1bb147522b993eb03a178b158 [file] [log] [blame]
description('Test insertAdjacentHTML exceptions to make sure they match HTML5');
var div = document.createElement("div");
shouldBeUndefined("div.insertAdjacentHTML('beforeBegin', 'text')");
shouldBeUndefined("div.insertAdjacentHTML('afterEnd', 'text')");
shouldThrow("div.insertAdjacentHTML('FOO', 'text')", '"Error: SyntaxError: DOM Exception 12"');
shouldThrow("document.documentElement.insertAdjacentHTML('afterEnd', 'text')", '"Error: NoModificationAllowedError: DOM Exception 7"');