blob: 7cde7e2a14385d7f419c119b462f901214dcf182 [file] [log] [blame]
description('Test insertAdjacentHTML exceptions to make sure they match HTML5');
var div = document.createElement("div");
shouldThrow("div.insertAdjacentHTML('beforeBegin', 'text')");
shouldThrow("div.insertAdjacentHTML('afterEnd', 'text')");
shouldThrow("div.insertAdjacentHTML('FOO', 'text')", '"SyntaxError (DOM Exception 12): The string did not match the expected pattern."');
shouldThrow("document.documentElement.insertAdjacentHTML('afterEnd', 'text')", '"NoModificationAllowedError (DOM Exception 7): The object can not be modified."');