Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: LayoutTests/scrollingcoordinator/non-fast-scrollable-visibility-change-expected.txt

Issue 850113003: iframe updates its parent scrollable area set when its visibility change (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added tests Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 This should be covered by the ONLY visible green overlay. 1
2 This test ensures that changing visibility of a non-fast scrollable area correct ly updates list of non-fast scrollable areas. (See http://crbug.com/434982) 2 Two 250px by 250px squares should be visible and fully covered by green overlays .
3 3
4 This test ensures that changing visibility of a non-fast scrollable area correct ly updates list of non-fast scrollable areas (See http://crbug.com/434982). Two types of non-fast scrollable regions are covered: div, and iframe.
5
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 6 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
5 7
6 8
9 running tests for non-fast scrollable div
10 PASS document.getElementById("div").style.display is "block"
7 PASS nonFastScrollableRects.length is 1 11 PASS nonFastScrollableRects.length is 1
8 PASS rectToString(nonFastScrollableRects[0]) is "[0, 300, 250, 250]" 12 PASS rectToString(nonFastScrollableRects[0]) is "[0, 350, 250, 250]"
9 PASS window.internals.needsLayoutCount() is 0 13 PASS window.internals.needsLayoutCount() is 0
10 PASS nonFastScrollableRects.length is 2 14 PASS nonFastScrollableRects.length is 2
11 PASS rectToString(nonFastScrollableRects[0]) is "[0, 0, 250, 250]" 15 PASS rectToString(nonFastScrollableRects[0]) is "[0, 50, 250, 250]"
12 PASS rectToString(nonFastScrollableRects[1]) is "[0, 300, 250, 250]" 16 PASS rectToString(nonFastScrollableRects[1]) is "[0, 350, 250, 250]"
13 PASS window.internals.needsLayoutCount() is 0 17 PASS window.internals.needsLayoutCount() is 0
14 PASS nonFastScrollableRects.length is 1 18 PASS nonFastScrollableRects.length is 1
15 PASS rectToString(nonFastScrollableRects[0]) is "[0, 0, 250, 250]" 19 PASS rectToString(nonFastScrollableRects[0]) is "[0, 50, 250, 250]"
20 running tests for non-fast scrollable iframe
21 PASS document.getElementById("iframe").style.display is "block"
22 PASS nonFastScrollableRects.length is 1
23 PASS rectToString(nonFastScrollableRects[0]) is "[0, 350, 250, 250]"
24 PASS window.internals.needsLayoutCount() is 0
25 PASS nonFastScrollableRects.length is 2
26 PASS rectToString(nonFastScrollableRects[0]) is "[0, 50, 250, 250]"
27 PASS rectToString(nonFastScrollableRects[1]) is "[0, 350, 250, 250]"
28 PASS window.internals.needsLayoutCount() is 0
29 PASS nonFastScrollableRects.length is 1
30 PASS rectToString(nonFastScrollableRects[0]) is "[0, 50, 250, 250]"
16 PASS successfullyParsed is true 31 PASS successfullyParsed is true
17 32
18 TEST COMPLETE 33 TEST COMPLETE
19 34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698