Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / Window / setTimeout-string-argument-expected.txt
blob5ac5580129769fee3e4348d805389cb31f293ba0
1 PASS: setTimeout("STRING", 0) works.
2 PASS: setInterval("STRING", 0) works.
3 PASS: setTimeout(String("STRING"), 0) works.
4 PASS: setInterval(String("STRING"), 0) works.
5 PASS: setTimeout({toString:function(){}}, 0) works.
6 PASS: setInterval({toString:function(){}}, 0) works.
7 PASS: setTimeout({ toString : function() { throw "Exception"; } }, 0) correctly threw an exception.
8 PASS: setInterval({ toString : function() { throw "Exception"; } }, 0) correctly threw an exception.
9 PASS: All tests passed.