WebKit Bugzilla
Attachment 341121 Details for
Bug 185920
: [El Capitan] FAIL http/tests/security/webaudio-render-remote-audio-allowed-crossorigin.html
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-185920-20180523132714.patch (text/plain), 3.50 KB, created by
Jer Noble
on 2018-05-23 13:27:18 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Jer Noble
Created:
2018-05-23 13:27:18 PDT
Size:
3.50 KB
patch
obsolete
>Subversion Revision: 232115 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 546f8b3d5cfdbb55a3a42bd2662de532c2b18c83..41b5e1efb19afa82338905fde532cdb8f14834bf 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,16 @@ >+2018-05-23 Jer Noble <jer.noble@apple.com> >+ >+ [Sierra] FAIL http/tests/security/webaudio-render-remote-audio-allowed-crossorigin.html >+ https://bugs.webkit.org/show_bug.cgi?id=185920 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Disable the recently added CORS checks for MediaElementAudioSourceNode on Sierra; no custom media loading >+ is available there, so we don't have the ability whether HTMLMediaElement loads are CORS-valid. >+ >+ * Modules/webaudio/MediaElementAudioSourceNode.cpp: >+ (WebCore::MediaElementAudioSourceNode::setFormat): >+ > 2018-04-05 Jer Noble <jer.noble@apple.com> > > ASSERTION FAILED: m_scriptExecutionContext under WebCore::AudioContext::isPlayingAudioDidChange() >diff --git a/Source/WebCore/Modules/webaudio/MediaElementAudioSourceNode.cpp b/Source/WebCore/Modules/webaudio/MediaElementAudioSourceNode.cpp >index 9eca86f2103ba2905ca7b24af17d97a9129483d1..264ba158f0e5ba768322e155296e80600699757a 100644 >--- a/Source/WebCore/Modules/webaudio/MediaElementAudioSourceNode.cpp >+++ b/Source/WebCore/Modules/webaudio/MediaElementAudioSourceNode.cpp >@@ -67,7 +67,9 @@ MediaElementAudioSourceNode::~MediaElementAudioSourceNode() > > void MediaElementAudioSourceNode::setFormat(size_t numberOfChannels, float sourceSampleRate) > { >+#if !PLATFORM(MAC) || __MAC_OS_X_VERSION_MAX_ALLOWED >= 101200 > m_muted = wouldTaintOrigin(); >+#endif > > if (numberOfChannels != m_sourceNumberOfChannels || sourceSampleRate != m_sourceSampleRate) { > if (!numberOfChannels || numberOfChannels > AudioContext::maxNumberOfChannels() || sourceSampleRate < minSampleRate || sourceSampleRate > maxSampleRate) { >diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog >index 442708d1d2469ecb2d805e05c8f2815a85e0a04d..66af54cf752e3c06724b3d29dd7174ddc2f28fbe 100644 >--- a/LayoutTests/ChangeLog >+++ b/LayoutTests/ChangeLog >@@ -1,3 +1,12 @@ >+2018-05-23 Jer Noble <jer.noble@apple.com> >+ >+ [Sierra] FAIL http/tests/security/webaudio-render-remote-audio-allowed-crossorigin.html >+ https://bugs.webkit.org/show_bug.cgi?id=185920 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * platform/mac/TestExpectations: >+ > 2018-04-05 Jer Noble <jer.noble@apple.com> > > ASSERTION FAILED: m_scriptExecutionContext under WebCore::AudioContext::isPlayingAudioDidChange() >diff --git a/LayoutTests/platform/mac/TestExpectations b/LayoutTests/platform/mac/TestExpectations >index 52d1e533a44825ddaaf8008d30c243240e985d53..17dcb6f0f5bfea26291b6d69bb4e832ba20cdaf3 100644 >--- a/LayoutTests/platform/mac/TestExpectations >+++ b/LayoutTests/platform/mac/TestExpectations >@@ -1925,3 +1925,6 @@ webkit.org/b/183258 imported/w3c/web-platform-tests/css/css-text/i18n/css3-text- > webkit.org/b/183258 imported/w3c/web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-115.html [ ImageOnlyFailure ] > webkit.org/b/183258 imported/w3c/web-platform-tests/css/css-text/i18n/css3-text-line-break-opclns-116.html [ ImageOnlyFailure ] > webkit.org/b/183258 imported/w3c/web-platform-tests/css/css-text/word-break/word-break-break-all-006.html [ ImageOnlyFailure ] >+ >+# <rdar://problem/40334739> Custom Media Loading is not available on Sierra, so CORS checks all fail >+[ Sierra ] http/tests/security/webaudio-render-remote-audio-blocked-no-crossorigin.html [ Skip ]
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 185920
:
341121
|
341123
|
341129
|
341143