diff --git a/scripts/9/data.js b/scripts/9/data.js
index 082b6adf..06edd50f 100644
--- a/scripts/9/data.js
+++ b/scripts/9/data.js
@@ -1061,13 +1061,6 @@ var tests = [
[ 'w3c', 'http://www.w3.org/TR/html-templates/' ],
[ 'whatwg', 'https://html.spec.whatwg.org/multipage/scripting.html#the-template-element' ]
]
- }, {
- id: 'imports',
- name: 'HTML imports',
- status: 'rejected',
- urls: [
- [ 'w3c', 'http://w3c.github.io/webcomponents/spec/imports/' ]
- ]
}
]
}
@@ -1123,10 +1116,10 @@ var tests = [
urls: [
[ 'w3c', 'https://www.w3.org/TR/generic-sensor/' ]
]
- },
-
+ },
+
'Low level sensors',
-
+
{
id: 'low.accelerometer',
name: 'Accelerometer',
@@ -1139,10 +1132,10 @@ var tests = [
id: 'low.magnetometer',
name: 'Magnetometer',
value: 0
- },
-
+ },
+
'High level sensors',
-
+
{
id: 'high.linearacceleration',
name: 'Linear Acceleration',
@@ -1159,7 +1152,7 @@ var tests = [
id: 'high.ambientlight',
name: 'Ambient Light',
value: 0
- },
+ },
]
}, {
id: 'hardware',
@@ -2686,15 +2679,6 @@ var tests = [
[ 'whatwg', 'https://html.spec.whatwg.org/multipage/scripting.html#attr-script-defer' ],
[ 'mdn', '/Web/HTML/Element/script' ]
]
- }, {
- id: 'executionevents',
- name: 'Script execution events',
- status: 'rejected',
- urls: [
- [ 'w3c', 'http://www.w3.org/TR/html5/scripting-1.html#the-script-element' ],
- [ 'whatwg', 'http://www.whatwg.org/specs/web-apps/current-work/multipage/scripting-1.html#the-script-element' ],
- [ 'mdn', '/Web/Events/beforescriptexecute' ]
- ]
}, {
id: 'onerror',
name: 'Runtime script error reporting',
diff --git a/scripts/9/engine.js b/scripts/9/engine.js
index e3f32410..2e2b0125 100644
--- a/scripts/9/engine.js
+++ b/scripts/9/engine.js
@@ -3667,16 +3667,6 @@ Test9 = (function () {
},
- /* html imports */
-
- function (results) {
- results.addItem({
- key: 'components.imports',
- passed: 'import' in document.createElement('link')
- });
- },
-
-
/* async scripts */
function (results) {
@@ -3707,42 +3697,6 @@ Test9 = (function () {
},
- /* script execution events */
-
- function (results) {
- var executionevents = results.addItem({
- key: 'scripting.executionevents',
- passed: false
- });
-
- executionevents.startBackground();
-
- var before = false;
-
- var s = document.createElement('script');
- s.src = "data:text/javascript;charset=utf-8,window"
-
- s.addEventListener('beforescriptexecute', function () {
- before = true;
- }, true);
-
- s.addEventListener('afterscriptexecute', function () {
- if (before) {
- executionevents.update({
- passed: true
- });
- }
-
- executionevents.stopBackground();
- }, true);
-
- document.body.appendChild(s);
-
- window.setTimeout(function () {
- executionevents.stopBackground();
- }, 500);
- },
-
/* base64 encoding and decoding */