| Index: third_party/WebKit/LayoutTests/intersection-observer/observer-without-js-reference.html
|
| diff --git a/third_party/WebKit/LayoutTests/intersection-observer/observer-without-js-reference.html b/third_party/WebKit/LayoutTests/intersection-observer/observer-without-js-reference.html
|
| index 1cdc0841165b875597b2f7277c4c0fe3e3ebd1e8..6525b1114653443c2b89614385e0febc1492b830 100644
|
| --- a/third_party/WebKit/LayoutTests/intersection-observer/observer-without-js-reference.html
|
| +++ b/third_party/WebKit/LayoutTests/intersection-observer/observer-without-js-reference.html
|
| @@ -43,11 +43,11 @@ runTestCycle(function() {
|
| function step0() {
|
| document.scrollingElement.scrollTop = 300;
|
| runTestCycle(step1, "document.scrollingElement.scrollTop = 300");
|
| - assert_equals(entries.length, 0, "No notifications after first rAF.");
|
| + assert_equals(entries.length, 1, "One notification.");
|
| }
|
|
|
| function step1() {
|
| document.scrollingElement.scrollTop = 0;
|
| - assert_equals(entries.length, 1, "One notification.");
|
| + assert_equals(entries.length, 2, "Two notifications.");
|
| }
|
| </script>
|
|
|