| Index: third_party/WebKit/LayoutTests/intersection-observer/resources/intersection-observer-test-utils.js
|
| diff --git a/third_party/WebKit/LayoutTests/intersection-observer/resources/intersection-observer-test-utils.js b/third_party/WebKit/LayoutTests/intersection-observer/resources/intersection-observer-test-utils.js
|
| index f9eca2e58e15250a8c79020d6d85d562c22190b4..f32856407422a5ee81f3dc7a20a944fd5ad00c63 100644
|
| --- a/third_party/WebKit/LayoutTests/intersection-observer/resources/intersection-observer-test-utils.js
|
| +++ b/third_party/WebKit/LayoutTests/intersection-observer/resources/intersection-observer-test-utils.js
|
| @@ -86,6 +86,11 @@ function checkLastEntry(entries, i, expected) {
|
| checkRect(
|
| entries[i].rootBounds, expected.slice(8, 12),
|
| 'entries[' + i + '].rootBounds');
|
| + if (expected.length > 12) {
|
| + assert_equals(
|
| + entries[i].isIntersecting, expected[12],
|
| + 'entries[' + i + '].isIntersecting');
|
| + }
|
| }
|
| }
|
|
|
|
|