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();
 }