Changeset 179794 in webkit


Ignore:
Timestamp:
Feb 7, 2015 9:24:25 PM (9 years ago)
Author:
ap@apple.com
Message:

fullscreen/full-screen-plugin.html is very flaky on Yosemite WK2
https://bugs.webkit.org/show_bug.cgi?id=141364

Reviewed by Zalan Bujtas.

Speculative fix. Make sure that the plug-in has loaded before using it.

  • fullscreen/full-screen-plugin.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r179792 r179794  
     12015-02-07  Alexey Proskuryakov  <ap@apple.com>
     2
     3        fullscreen/full-screen-plugin.html is very flaky on Yosemite WK2
     4        https://bugs.webkit.org/show_bug.cgi?id=141364
     5
     6        Reviewed by Zalan Bujtas.
     7
     8        Speculative fix. Make sure that the plug-in has loaded before using it.
     9
     10        * fullscreen/full-screen-plugin.html:
     11
    1122015-02-07  Tim Horton  <timothy_horton@apple.com>
    213
  • trunk/LayoutTests/fullscreen/full-screen-plugin.html

    r170717 r179794  
    77<div>
    88    <div>Test that plugin doesn't restart when taking it to full screen and back.</div>
    9     <div id="result">Test didn't run'</div>
     9    <div id="result">Test didn't run</div>
    1010    <embed id="plugin" type="application/x-webkit-test-netscape" width="200" height="200"></embed>
    1111</div>
    1212
    1313<script>
    14 if ("webkitRequestFullScreen" in Element.prototype) {
     14onload = function() {
    1515    var callback;
    1616    var fullscreenChanged = function(event)
     
    2424    var plugin = document.getElementById('plugin');
    2525    var testObject = plugin.testObject;
     26    testObject.property = 'foo'; // Verify that setting a property works before going fullscreen.
    2627
    2728    var spanEnteredFullScreen = function(event) {
Note: See TracChangeset for help on using the changeset viewer.