Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Use actual name for Digital Restrictions Management #571

Open
wants to merge 10 commits into
base: version-9.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/5/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -1187,8 +1187,8 @@ var tests = [
[ 'mdn', '/Using_HTML5_audio_and_video' ]
]
}, {
id: 'drm',
name: 'DRM support',
id: 'eme',
name: 'Encrypted Media Extensions',
status: 'controversial',
url: 'http://www.w3.org/TR/encrypted-media/'
}, {
Expand Down
4 changes: 2 additions & 2 deletions scripts/6/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -1241,8 +1241,8 @@ var tests = [
'<strong>Advanced</strong>',

{
id: 'drm',
name: 'DRM support',
id: 'eme',
name: 'Encrypted Media Extensions',
status: 'controversial',
url: 'http://www.w3.org/TR/encrypted-media/'
}, {
Expand Down
2 changes: 1 addition & 1 deletion scripts/6/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ Test6 = (function() {


this.section.setItem({
id: 'drm',
id: 'eme',
passed: 'setMediaKeys' in this.element ? YES : 'webkitAddKey' in this.element || 'webkitSetMediaKeys' in this.element || 'mozSetMediaKeys' in this.element || 'msSetMediaKeys' in this.element ? YES | PREFIX : NO
});

Expand Down
4 changes: 2 additions & 2 deletions scripts/7/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -1303,8 +1303,8 @@ var tests = [
'<strong>Advanced</strong>',

{
id: 'drm',
name: 'DRM support',
id: 'eme',
name: 'Encrypted Media Extensions',
status: 'controversial',
url: 'http://www.w3.org/TR/encrypted-media/'
}, {
Expand Down
2 changes: 1 addition & 1 deletion scripts/7/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ Test7 = (function() {


this.section.setItem({
id: 'drm',
id: 'eme',
passed: 'setMediaKeys' in this.element ? YES : 'webkitAddKey' in this.element || 'webkitSetMediaKeys' in this.element || 'mozSetMediaKeys' in this.element || 'msSetMediaKeys' in this.element ? YES | PREFIX : NO
});

Expand Down
4 changes: 2 additions & 2 deletions scripts/8/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -1405,8 +1405,8 @@ var tests = [
[ 'wp', '/apis/media_source_extensions' ]
]
}, {
id: 'drm',
name: 'DRM support',
id: 'eme',
name: 'Encrypted Media Extensions',
status: 'controversial',
url: 'http://www.w3.org/TR/encrypted-media/'
},
Expand Down
2 changes: 1 addition & 1 deletion scripts/8/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -2710,7 +2710,7 @@ Test8 = (function () {
/* drm */

results.addItem({
key: 'streaming.drm',
key: 'streaming.eme',
passed: 'setMediaKeys' in element ? YES : 'webkitAddKey' in element || 'webkitSetMediaKeys' in element || 'mozSetMediaKeys' in element || 'msSetMediaKeys' in element ? YES | PREFIX : NO
});

Expand Down
4 changes: 2 additions & 2 deletions scripts/9/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -1460,8 +1460,8 @@ var tests = [
[ 'w3c', 'http://www.w3.org/TR/media-source/' ]
]
}, {
id: 'drm',
name: 'DRM support',
id: 'eme',
name: 'Encrypted Media Extensions',
status: 'controversial',
url: 'http://www.w3.org/TR/encrypted-media/'
},
Expand Down
2 changes: 1 addition & 1 deletion scripts/9/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -2714,7 +2714,7 @@ Test9 = (function () {
/* drm */

results.addItem({
key: 'streaming.drm',
key: 'streaming.eme',
passed: 'setMediaKeys' in element ? YES : 'webkitAddKey' in element || 'webkitSetMediaKeys' in element || 'mozSetMediaKeys' in element || 'msSetMediaKeys' in element ? YES | PREFIX : NO
});

Expand Down