Changeset 156431 in webkit
- Timestamp:
- Sep 25, 2013, 4:18:39 PM (12 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r156426 r156431 1 2013-09-25 Alexey Proskuryakov <ap@apple.com> 2 3 Flaky Test: fast/history/history-subframe-with-name.html 4 https://bugs.webkit.org/show_bug.cgi?id=51039 5 6 Reviewed by Brady Eidson. 7 8 * fast/history/history-subframe-with-name.html: In state 3, there was a race between 9 history.forward() and navigating to a new URL. Not sure how this resulted in an 10 extra load, but let's get rid of that. Also, extended failure logging. 11 12 * fast/history/resources/history-subframe-with-name-2.html: No longer do the 13 navigation unconditionally. We need it in state 1, but not in state 3. 14 1 15 2013-09-25 Roger Fong <roger_fong@apple.com> 2 16 -
trunk/LayoutTests/fast/history/history-subframe-with-name.html
r155269 r156431 44 44 case 1: 45 45 shouldBe('2', 'currentPageId'); 46 // Make sure we generate a history entry. 47 setTimeout(function() { testWindow.frames[0].location.href = 'resources/history-subframe-with-name-3.html' }, 0); 46 48 break; 47 49 case 2: … … 57 59 break; 58 60 default: 59 testFailed('Should not be in state ' + currentState );61 testFailed('Should not be in state ' + currentState + ". currentPageId is " + currentPageId); 60 62 break; 61 63 } -
trunk/LayoutTests/fast/history/resources/history-subframe-with-name-2.html
r156362 r156431 9 9 } 10 10 parent.opener.onFrameLoaded(2); 11 // Make sure we generate a history entry12 setTimeout(function() {location.href = 'history-subframe-with-name-3.html';}, 0);13 11 } 14 12 </script>
Note:
See TracChangeset
for help on using the changeset viewer.