summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/history/state-object-few-arguements-exception-expected.txt
blob: fb55427c60417cf93523ec55467d738b7cdbd1b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
This test makes sure that calls to pushState() and replaceState() with less than 2 arguments fail as expected.

On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".


PASS successfullyParsed is true

TEST COMPLETE
PASS history.pushState() threw exception TypeError: Failed to execute 'pushState' on 'History': 2 arguments required, but only 0 present..
PASS history.pushState(null) threw exception TypeError: Failed to execute 'pushState' on 'History': 2 arguments required, but only 1 present..
PASS history.pushState(null, null) did not throw exception.
PASS history.pushState(null, null, null) did not throw exception.
PASS history.replaceState() threw exception TypeError: Failed to execute 'replaceState' on 'History': 2 arguments required, but only 0 present..
PASS history.replaceState(null) threw exception TypeError: Failed to execute 'replaceState' on 'History': 2 arguments required, but only 1 present..
PASS history.replaceState(null, null) did not throw exception.
PASS history.replaceState(null, null, null) did not throw exception.