Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
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: Canonical link: https://commits.webkit.org/61920@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@71433 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Brian Weinstein
committed
Nov 5, 2010
1 parent
b5562bc
commit 16fc74392734fd17061dd3dcd5a5cae2a3bc8159
Showing
6 changed files
with
22 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,4 +1,4 @@ | ||
CONSOLE MESSAGE: line 1: End Script: user-script-video-document.html | ||
CONSOLE MESSAGE: line 1: Start Script: counting.mp4 | ||
CONSOLE MESSAGE: line 1: End Script: counting.mp4 | ||
CONSOLE MESSAGE: line 1: Start Script: silence-loop.mov | ||
CONSOLE MESSAGE: line 1: End Script: silence-loop.mov | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -9,6 +9,6 @@ | ||
</script> | ||
</head> | ||
<body> | ||
<iframe src="resources/counting.mp4"></iframe> | ||
<iframe src="resources/silence-loop.mov"></iframe> | ||
</body> | ||
</html> |