diff options
author | jinho.bang@samsung.com <jinho.bang@samsung.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2014-05-22 01:14:34 +0000 |
---|---|---|
committer | jinho.bang@samsung.com <jinho.bang@samsung.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2014-05-22 01:14:34 +0000 |
commit | 806a09ed84eb473eb24f6984e69364fee644dbdb (patch) | |
tree | de317abdc5ba338398b3fadbd4163ce91056b9cd /third_party/WebKit/LayoutTests/fast/canvas/canvas-scroll-path-into-view-expected.txt | |
parent | cd86d76c09d7763bbbde35a3e5252149bf78e261 (diff) | |
download | chromium_src-806a09ed84eb473eb24f6984e69364fee644dbdb.zip chromium_src-806a09ed84eb473eb24f6984e69364fee644dbdb.tar.gz chromium_src-806a09ed84eb473eb24f6984e69364fee644dbdb.tar.bz2 |
Add some layout tests about behavior on undefined and null.
According to WebIDL in Blink guideline[1], behavior on undefind and null
must be tested in layout tests.
[1] http://www.chromium.org/blink/webidl#TOC-undefined-and-null
Review URL: https://codereview.chromium.org/289283002
git-svn-id: svn://svn.chromium.org/blink/trunk@174500 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/canvas/canvas-scroll-path-into-view-expected.txt')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/canvas/canvas-scroll-path-into-view-expected.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-scroll-path-into-view-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-scroll-path-into-view-expected.txt index 49e3b06..ebad0fb 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-scroll-path-into-view-expected.txt +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-scroll-path-into-view-expected.txt @@ -93,6 +93,7 @@ PASS testValue is 660 Test case 5: exceptions PASS context.scrollPathIntoView(null); threw exception TypeError: Failed to execute 'scrollPathIntoView' on 'CanvasRenderingContext2D': parameter 1 is not of type 'Path2D'.. +PASS context.scrollPathIntoView(undefined); threw exception TypeError: Failed to execute 'scrollPathIntoView' on 'CanvasRenderingContext2D': parameter 1 is not of type 'Path2D'.. PASS context.scrollPathIntoView([]); threw exception TypeError: Failed to execute 'scrollPathIntoView' on 'CanvasRenderingContext2D': parameter 1 is not of type 'Path2D'.. PASS context.scrollPathIntoView({}); threw exception TypeError: Failed to execute 'scrollPathIntoView' on 'CanvasRenderingContext2D': parameter 1 is not of type 'Path2D'.. |