| commit | bb04ae66842c94e1e8e7e95dfacccd2faba65a2d | [log] [tgz] |
|---|---|---|
| author | philipj@opera.com <philipj@opera.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | Tue Aug 05 17:07:05 2014 |
| committer | philipj@opera.com <philipj@opera.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | Tue Aug 05 17:07:05 2014 |
| tree | 596f7957a0e093d4a4291bf8a61fedfd061c5ad6 | |
| parent | 59672543b95b282e10d84ae9b611cd646174897b [diff] |
Rename a prefixed fullscreen test to full-screen-* for consistency This way, fullscreen-* can be used for the unprefixed API tests. BUG=383813 Review URL: https://codereview.chromium.org/440673003 git-svn-id: svn://svn.chromium.org/blink/trunk@179511 bbb929c8-8fbe-4397-9dbb-9b2b20218538
diff --git a/third_party/WebKit/LayoutTests/fullscreen/fullscreen-child-not-allowed-crash-expected.txt b/third_party/WebKit/LayoutTests/fullscreen/full-screen-child-not-allowed-crash-expected.txt similarity index 100% rename from third_party/WebKit/LayoutTests/fullscreen/fullscreen-child-not-allowed-crash-expected.txt rename to third_party/WebKit/LayoutTests/fullscreen/full-screen-child-not-allowed-crash-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fullscreen/fullscreen-child-not-allowed-crash.html b/third_party/WebKit/LayoutTests/fullscreen/full-screen-child-not-allowed-crash.html similarity index 94% rename from third_party/WebKit/LayoutTests/fullscreen/fullscreen-child-not-allowed-crash.html rename to third_party/WebKit/LayoutTests/fullscreen/full-screen-child-not-allowed-crash.html index 7a39be5f..a1d17210 100644 --- a/third_party/WebKit/LayoutTests/fullscreen/fullscreen-child-not-allowed-crash.html +++ b/third_party/WebKit/LayoutTests/fullscreen/full-screen-child-not-allowed-crash.html
@@ -11,9 +11,9 @@ logResult(false, "Element.prototype.webkitRequestFullScreen == undefined"); endTest(); } else { - runWithKeyDown(function() { div1.webkitRequestFullScreen() }); + runWithKeyDown(function() { div1.webkitRequestFullScreen() }); } - + frameset1 = document.createElementNS("http://www.w3.org/1999/xhtml", "frameset"); document.body.appendChild(frameset1); setTimeout("crash()", 0); @@ -21,7 +21,7 @@ function crash() { frameset1.appendChild(div1); - if (window.eventSender) + if (window.eventSender) eventSender.keyDown("X"); endTest(); }