OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <script src="../../js/resources/js-test-pre.js"></script> | 5 <script src="../../js/resources/js-test-pre.js"></script> |
6 <title></title> | 6 <title></title> |
7 </head> | 7 </head> |
8 <body> | 8 <body> |
9 <p id=description></p> | 9 <p id=description></p> |
10 <div id="console"></div> | 10 <div id="console"></div> |
(...skipping 12 matching lines...) Expand all Loading... |
23 shouldThrow('observer.observe(document.body, {subtree: true})'); | 23 shouldThrow('observer.observe(document.body, {subtree: true})'); |
24 shouldThrow('observer.observe(document.body, {childList: true, attributeOldV
alue: true})'); | 24 shouldThrow('observer.observe(document.body, {childList: true, attributeOldV
alue: true})'); |
25 shouldThrow('observer.observe(document.body, {attributes: true, characterDat
aOldValue: true})'); | 25 shouldThrow('observer.observe(document.body, {attributes: true, characterDat
aOldValue: true})'); |
26 shouldThrow('observer.observe(document.body, {characterData: true, attribute
Filter: ["id"]})'); | 26 shouldThrow('observer.observe(document.body, {characterData: true, attribute
Filter: ["id"]})'); |
27 } | 27 } |
28 | 28 |
29 description('Test that WebKitMutationObserver.observe throws exceptions appropri
ately'); | 29 description('Test that WebKitMutationObserver.observe throws exceptions appropri
ately'); |
30 | 30 |
31 runTest(); | 31 runTest(); |
32 </script> | 32 </script> |
33 <script src="../../js/resources/js-test-post.js"></script> | |
34 </body> | 33 </body> |
35 </html> | 34 </html> |
OLD | NEW |