Title: [179794] trunk/LayoutTests
- Revision
- 179794
- Author
- [email protected]
- Date
- 2015-02-07 21:24:25 -0800 (Sat, 07 Feb 2015)
Log 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:
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (179793 => 179794)
--- trunk/LayoutTests/ChangeLog 2015-02-08 03:26:51 UTC (rev 179793)
+++ trunk/LayoutTests/ChangeLog 2015-02-08 05:24:25 UTC (rev 179794)
@@ -1,3 +1,14 @@
+2015-02-07 Alexey Proskuryakov <[email protected]>
+
+ 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:
+
2015-02-07 Tim Horton <[email protected]>
Add some dictionary lookup tests
Modified: trunk/LayoutTests/fullscreen/full-screen-plugin.html (179793 => 179794)
--- trunk/LayoutTests/fullscreen/full-screen-plugin.html 2015-02-08 03:26:51 UTC (rev 179793)
+++ trunk/LayoutTests/fullscreen/full-screen-plugin.html 2015-02-08 05:24:25 UTC (rev 179794)
@@ -6,12 +6,12 @@
</script>
<div>
<div>Test that plugin doesn't restart when taking it to full screen and back.</div>
- <div id="result">Test didn't run'</div>
+ <div id="result">Test didn't run</div>
<embed id="plugin" type="application/x-webkit-test-netscape" width="200" height="200"></embed>
</div>
<script>
-if ("webkitRequestFullScreen" in Element.prototype) {
+_onload_ = function() {
var callback;
var fullscreenChanged = function(event)
{
@@ -23,6 +23,7 @@
document.body.offsetTop;
var plugin = document.getElementById('plugin');
var testObject = plugin.testObject;
+ testObject.property = 'foo'; // Verify that setting a property works before going fullscreen.
var spanEnteredFullScreen = function(event) {
setTimeout(function () {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes