Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(477)

Side by Side Diff: LayoutTests/fast/dom/HTMLElement/insertAdjacentHTML-errors-expected.txt

Issue 105693009: Move insertAdjacentHTML to Element (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Correct base. Should not include patches it depends on. Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLElement/script-tests/insertAdjacentHTML-errors.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Test insertAdjacentHTML exceptions to make sure they match HTML5 1 Test insertAdjacentHTML exceptions to make sure they match HTML5
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS div.insertAdjacentHTML('beforeBegin', 'text') threw exception NoModificatio nAllowedError: Failed to execute 'insertAdjacentHTML' on 'HTMLElement': The elem ent has no parent.. 6 PASS div.insertAdjacentHTML('beforeBegin', 'text') threw exception NoModificatio nAllowedError: Failed to execute 'insertAdjacentHTML' on 'Element': The element has no parent..
7 PASS div.insertAdjacentHTML('afterEnd', 'text') threw exception NoModificationAl lowedError: Failed to execute 'insertAdjacentHTML' on 'HTMLElement': The element has no parent.. 7 PASS div.insertAdjacentHTML('afterEnd', 'text') threw exception NoModificationAl lowedError: Failed to execute 'insertAdjacentHTML' on 'Element': The element has no parent..
8 PASS div.insertAdjacentHTML('FOO', 'text') threw exception SyntaxError: Failed t o execute 'insertAdjacentHTML' on 'HTMLElement': The value provided ('FOO') is n ot one of 'beforeBegin', 'afterBegin', 'beforeEnd', or 'afterEnd'.. 8 PASS div.insertAdjacentHTML('FOO', 'text') threw exception SyntaxError: Failed t o execute 'insertAdjacentHTML' on 'Element': The value provided ('FOO') is not o ne of 'beforeBegin', 'afterBegin', 'beforeEnd', or 'afterEnd'..
9 PASS document.documentElement.insertAdjacentHTML('afterEnd', 'text') threw excep tion NoModificationAllowedError: Failed to execute 'insertAdjacentHTML' on 'HTML Element': The element has no parent.. 9 PASS document.documentElement.insertAdjacentHTML('afterEnd', 'text') threw excep tion NoModificationAllowedError: Failed to execute 'insertAdjacentHTML' on 'Elem ent': The element has no parent..
10 PASS successfullyParsed is true 10 PASS successfullyParsed is true
11 11
12 TEST COMPLETE 12 TEST COMPLETE
13 13
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/dom/HTMLElement/script-tests/insertAdjacentHTML-errors.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698