Changeset 202509 in webkit
- Timestamp:
- Jun 27, 2016, 1:37:48 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r202505 r202509 1 2016-06-27 Eric Carlson <eric.carlson@apple.com> 2 3 [Mac] PiP placeholder should remain visible when 'controls' attribute is removed 4 https://bugs.webkit.org/show_bug.cgi?id=159158 5 <rdar://problem/26727435> 6 7 Reviewed by Jer Noble. 8 9 * media/controls/picture-in-picture-expected.txt: Updated. 10 * media/controls/picture-in-picture.html: Ditto. 11 1 12 2016-06-27 Antoine Quint <graouts@apple.com> 2 13 -
trunk/LayoutTests/media/controls/picture-in-picture-expected.txt
r202219 r202509 24 24 PASS: Inline placeholder should be visible at this point 25 25 26 Test for the pip placeholder visibility in pip mode without a 'controls' attribute 27 28 PASS: Should still be in pip mode 29 PASS: No controls attribute 30 PASS: Inline placeholder should still be visible 31 26 32 Testing finished. 27 33 -
trunk/LayoutTests/media/controls/picture-in-picture.html
r202219 r202509 8 8 window.internals.settings.setAllowsPictureInPictureMediaPlayback(true); 9 9 10 vartester = new ControlsTest("non-existent-media-file", "error")10 const tester = new ControlsTest("non-existent-media-file", "error") 11 11 .whenReady(runTestsWithoutVideo) 12 12 .start(); … … 14 14 function runTestsWithoutVideo() 15 15 { 16 varcurrentState = tester.currentState;16 const currentState = tester.currentState; 17 17 tester.test("We are using the apple idiom") 18 18 .value(currentState.idiom) … … 21 21 tester.startNewSection("Test the picture-in-picture button without video", true); 22 22 23 varstateForPictureInPictureButton = tester.stateForControlsElement("Picture-in-picture Button");23 const stateForPictureInPictureButton = tester.stateForControlsElement("Picture-in-picture Button"); 24 24 tester.test("Picture-in-picture button should not be visible if there's no video") 25 25 .value(stateForPictureInPictureButton.className) … … 35 35 tester.startNewSection("Test the picture-in-picture button with valid video"); 36 36 37 varstateForPictureInPictureButton = tester.stateForControlsElement("Picture-in-picture Button", true);37 const stateForPictureInPictureButton = tester.stateForControlsElement("Picture-in-picture Button", true); 38 38 tester.test("Picture-in-picture button should be visible if there's video") 39 39 .value(stateForPictureInPictureButton.className) … … 44 44 .isNotEqualTo(undefined); 45 45 46 varstateForPlaceholder = tester.stateForControlsElement("Inline playback placeholder", true);46 const stateForPlaceholder = tester.stateForControlsElement("Inline playback placeholder", true); 47 47 tester.test("Inline placeholder should not be visible at this point") 48 48 .value(stateForPlaceholder.className) … … 63 63 .isEqualTo("picture-in-picture"); 64 64 65 varstateForPlaceholder = tester.stateForControlsElement("Inline playback placeholder", true);65 const stateForPlaceholder = tester.stateForControlsElement("Inline playback placeholder", true); 66 66 tester.test("Inline placeholder should be visible at this point") 67 67 .value(stateForPlaceholder.className) 68 68 .doesNotContain("hidden"); 69 69 70 const controlsObserver = new MutationObserver(controlsDidChange); 71 controlsObserver.observe(tester.media, { attributes: true, attributeFilter: ['controls'] }); 72 73 tester.media.removeAttribute('controls'); 74 } 75 76 function controlsDidChange() 77 { 78 tester.startNewSection("Test for the pip placeholder visibility in pip mode without a 'controls' attribute"); 79 80 tester.test("Should still be in pip mode") 81 .value(tester.media.webkitPresentationMode) 82 .isEqualTo("picture-in-picture"); 83 84 tester.test("No controls attribute") 85 .value(tester.media.hasAttribute('controls')) 86 .isFalse(); 87 88 const stateForPlaceholder = tester.stateForControlsElement("Inline playback placeholder", true); 89 tester.test("Inline placeholder should still be visible") 90 .value(stateForPlaceholder.className) 91 .doesNotContain("hidden"); 92 70 93 tester.media.webkitSetPresentationMode("inline"); 94 71 95 tester.end(); 72 96 } -
trunk/Source/WebCore/ChangeLog
r202507 r202509 1 2016-06-27 Eric Carlson <eric.carlson@apple.com> 2 3 [Mac] PiP placeholder should remain visible when 'controls' attribute is removed 4 https://bugs.webkit.org/show_bug.cgi?id=159158 5 <rdar://problem/26727435> 6 7 Reviewed by Jer Noble. 8 9 No new tests, existing test updated. 10 11 * Modules/mediacontrols/mediaControlsApple.js: 12 (Controller.prototype.shouldHaveControls): Always return true when in PiP or AirPlay mode. 13 1 14 2016-06-27 Oliver Hunt <oliver@apple.com> 2 15 -
trunk/Source/WebCore/Modules/mediacontrols/mediaControlsApple.js
r202505 r202509 307 307 return true; 308 308 309 return this.video.controls || this.isFullScreen(); 309 if (this.isFullScreen() || this.presentationMode() === 'picture-in-picture' || this.currentPlaybackTargetIsWireless()) 310 return true; 311 312 return this.video.controls; 310 313 }, 311 314
Note:
See TracChangeset
for help on using the changeset viewer.