diff --git a/test/.DS_Store b/test/.DS_Store
deleted file mode 100644
index 5008ddf..0000000
Binary files a/test/.DS_Store and /dev/null differ
diff --git a/test/cordova-incl.js b/test/cordova-incl.js
deleted file mode 100644
index bc1dd7a..0000000
--- a/test/cordova-incl.js
+++ /dev/null
@@ -1,72 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
-*/
-
-var PLAT;
-if (/cordova-amazon-fireos/.exec(navigator.userAgent)) {
- PLAT = 'amazon-fireos';
-}else if (/Android/.exec(navigator.userAgent)) {
- PLAT = 'android';
-} else if (/(iPad)|(iPhone)|(iPod)/.exec(navigator.userAgent)) {
- PLAT = 'ios';
-} else if (/(BB10)|(PlayBook)|(BlackBerry)/.exec(navigator.userAgent)) {
- PLAT = 'blackberry';
-}
-
-var scripts = document.getElementsByTagName('script');
-var currentPath = scripts[scripts.length - 1].src;
-var platformCordovaPath = currentPath.replace("cordova-incl.js", "cordova." + PLAT + ".js");
-var normalCordovaPath = currentPath.replace("cordova-incl.js", "cordova.js");
-var cordovaPath = normalCordovaPath;
-
-if (PLAT) {
- // XHR to local file is an error on some platforms, windowsphone for one
- try {
- var xhr = new XMLHttpRequest();
- xhr.open("GET", platformCordovaPath, false);
- xhr.onreadystatechange = function() {
-
- if (this.readyState == this.DONE && this.responseText.length > 0) {
- if(parseInt(this.status) >= 400){
- cordovaPath = normalCordovaPath;
- }else{
- cordovaPath = platformCordovaPath;
- }
- }
- };
- xhr.send(null);
- }
- catch(e){
- cordovaPath = normalCordovaPath;
- } // access denied!
-}
-
-if (!window._doNotWriteCordovaScript) {
- document.write('');
-}
-
-function backHome() {
- if (window.device && device.platform && (device.platform.toLowerCase() == 'android' || device.platform.toLowerCase() == 'amazon-fireos')) {
- navigator.app.backHistory();
- }
- else {
- window.history.go(-1);
- }
-}
diff --git a/test/inappbrowser/index.html b/test/inappbrowser/index.html
deleted file mode 100644
index dbc094d..0000000
--- a/test/inappbrowser/index.html
+++ /dev/null
@@ -1,258 +0,0 @@
-
-
-
-
-
-
-
-
- Cordova Mobile Spec
-
-
-
-
-
-
-
-
-
InAppBrowser
-
- Make sure http://www.google.com is white listed.
- Make sure http://www.apple.com is not in the white list. In iOS, starred * tests will leave the app with no way to return.
-
User-Agent:
-
-
Back
-
Local URL
-
Default: CordovaWebView
-
Target=Self: CordovaWebView
-
Target=System: Error
-
Target=Blank: InAppBrowser
-
Target=Random: InAppBrowser
-
Target=Random, no location bar: InAppBrowser
-
White Listed URL
-
Default: CordovaWebView*
-
Target=Self: CordovaWebView*
-
Target=System: System Browser
-
Target=Blank: InAppBrowser
-
Target=Random: InAppBrowser
-
Target=Random, no location bar: InAppBrowser
-
Non White Listed URL
-
Default: InAppBrowser
-
Target=Self: InAppBrowser
-
Target=System: System
-
Target=Blank: InAppBrowser
-
Target=Random: InAppBrowser
-
Target=Random, no location bar: InAppBrowser
-
Page with redirect
-
http://google.com (should 301)
-
http://www.zhihu.com/answer/16714076 (should 302)
-
PDF URL
-
Remote URL
-
Local URL
-
INVALID URL
-
Invalid Scheme
-
Invalid Host
-
Missing File
-
CSS / JS Injection
-
Original Document
-
CSS File Injection
-
CSS File Injection (CB)
-
CSS Literal Injection
-
CSS Literal Injection (CB)
-
Script File Injection
-
Script File Injection (CB)
-
Script Literal Injection
-
Script Literal Injection (CB)
-
Open Hidden
-
google.com hidden
-
show hidden
-
close hidden
-
google.com not hidden
-
Back
-
-
diff --git a/test/inappbrowser/inject.css b/test/inappbrowser/inject.css
deleted file mode 100644
index 3f6e41c..0000000
--- a/test/inappbrowser/inject.css
+++ /dev/null
@@ -1,21 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
-*/
-#style-update-file {
- display: block !important;
-}
diff --git a/test/inappbrowser/inject.html b/test/inappbrowser/inject.html
deleted file mode 100644
index 0f1efdd..0000000
--- a/test/inappbrowser/inject.html
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
- Cordova Mobile Spec
-
-
-
-
InAppBrowser - Script / Style Injection Test
-
Style updated from file
-
Style updated from literal
-
-
-
diff --git a/test/inappbrowser/inject.js b/test/inappbrowser/inject.js
deleted file mode 100644
index 6f25493..0000000
--- a/test/inappbrowser/inject.js
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
-*/
-var d = document.getElementById("header")
-d.innerHTML = "Script file successfully injected";
diff --git a/test/inappbrowser/local.html b/test/inappbrowser/local.html
deleted file mode 100644
index d5edbf9..0000000
--- a/test/inappbrowser/local.html
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
- Cordova Mobile Spec
-
-
-
-
-