Changeset 71433 in webkit


Ignore:
Timestamp:
Nov 5, 2010 11:01:50 AM (13 years ago)
Author:
bweinstein@apple.com
Message:

userscripts/user-script-*-document.html tests are flaky on Windows
https://bugs.webkit.org/show_bug.cgi?id=45980

Reviewed by Eric Carlson.

We can't use counting.mp4 as our video file to create a video document, because on Windows counting.mp4
is opened in Windows Explorer or Quicktime instead of Safari. This bug is being tracked by
<https://bugs.webkit.org/show_bug.cgi?id=25220>.

This patch switches user-script-video-document.html to use silence-loop.mov instead of counting.mp4,
which creates a video document on both Mac and Windows.

  • userscripts/resources/counting.mp4: Removed.
  • userscripts/resources/silence-loop.mov: Added.
  • userscripts/user-script-video-document-expected.txt:
  • userscripts/user-script-video-document.html:
Location:
trunk/LayoutTests
Files:
1 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r71432 r71433  
     12010-11-05  Brian Weinstein  <bweinstein@apple.com>
     2
     3        Reviewed by Eric Carlson.
     4
     5        userscripts/user-script-*-document.html tests are flaky on Windows
     6        https://bugs.webkit.org/show_bug.cgi?id=45980
     7       
     8        We can't use counting.mp4 as our video file to create a video document, because on Windows counting.mp4
     9        is opened in Windows Explorer or Quicktime instead of Safari. This bug is being tracked by
     10        <https://bugs.webkit.org/show_bug.cgi?id=25220>.
     11       
     12        This patch switches user-script-video-document.html to use silence-loop.mov instead of counting.mp4,
     13        which creates a video document on both Mac and Windows.
     14
     15        * userscripts/resources/counting.mp4: Removed.
     16        * userscripts/resources/silence-loop.mov: Added.
     17        * userscripts/user-script-video-document-expected.txt:
     18        * userscripts/user-script-video-document.html:
     19
    1202010-11-05  Anders Carlsson  <andersca@apple.com>
    221
  • trunk/LayoutTests/platform/win/Skipped

    r71431 r71433  
    10081008userscripts/user-style-top-frame-only.html
    10091009
    1010 # These tests are flaky on Windows. Needs investigation.
    1011 # https://bugs.webkit.org/show_bug.cgi?id=45980
    1012 userscripts/user-script-video-document.html
    1013 
    10141010# Directory upload is not enabled.
    10151011fast/forms/input-file-directory-upload.html
  • trunk/LayoutTests/userscripts/user-script-video-document-expected.txt

    r71339 r71433  
    11CONSOLE MESSAGE: line 1: End Script: user-script-video-document.html
    2 CONSOLE MESSAGE: line 1: Start Script: counting.mp4
    3 CONSOLE MESSAGE: line 1: End Script: counting.mp4
     2CONSOLE MESSAGE: line 1: Start Script: silence-loop.mov
     3CONSOLE MESSAGE: line 1: End Script: silence-loop.mov
    44
  • trunk/LayoutTests/userscripts/user-script-video-document.html

    r71339 r71433  
    1010</head>
    1111<body>
    12 <iframe src="resources/counting.mp4"></iframe>
     12<iframe src="resources/silence-loop.mov"></iframe>
    1313</body>
    1414</html>
Note: See TracChangeset for help on using the changeset viewer.