| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 // mode being the state of the media element's crossorigin content attribute
, the origin being the | 200 // mode being the state of the media element's crossorigin content attribute
, the origin being the |
| 201 // origin of the media element's Document, and the default origin behaviour
set to fail. | 201 // origin of the media element's Document, and the default origin behaviour
set to fail. |
| 202 if (url.isEmpty()) | 202 if (url.isEmpty()) |
| 203 return false; | 203 return false; |
| 204 | 204 |
| 205 if (!document().contentSecurityPolicy()->allowMediaFromSource(url)) { | 205 if (!document().contentSecurityPolicy()->allowMediaFromSource(url)) { |
| 206 WTF_LOG(Media, "HTMLTrackElement::canLoadUrl(%s) -> rejected by Content
Security Policy", urlForLoggingTrack(url).utf8().data()); | 206 WTF_LOG(Media, "HTMLTrackElement::canLoadUrl(%s) -> rejected by Content
Security Policy", urlForLoggingTrack(url).utf8().data()); |
| 207 return false; | 207 return false; |
| 208 } | 208 } |
| 209 | 209 |
| 210 return dispatchBeforeLoadEvent(url.string()); | 210 return true; |
| 211 } | 211 } |
| 212 | 212 |
| 213 void HTMLTrackElement::didCompleteLoad(LoadStatus status) | 213 void HTMLTrackElement::didCompleteLoad(LoadStatus status) |
| 214 { | 214 { |
| 215 // 4.8.10.12.3 Sourcing out-of-band text tracks (continued) | 215 // 4.8.10.12.3 Sourcing out-of-band text tracks (continued) |
| 216 | 216 |
| 217 // 4. Download: ... | 217 // 4. Download: ... |
| 218 // If the fetching algorithm fails for any reason (network error, the server
returns an error | 218 // If the fetching algorithm fails for any reason (network error, the server
returns an error |
| 219 // code, a cross-origin check fails, etc), or if URL is the empty string or
has the wrong origin | 219 // code, a cross-origin check fails, etc), or if URL is the empty string or
has the wrong origin |
| 220 // as determined by the condition at the start of this step, or if the fetch
ed resource is not in | 220 // as determined by the condition at the start of this step, or if the fetch
ed resource is not in |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 | 266 |
| 267 HTMLMediaElement* HTMLTrackElement::mediaElement() const | 267 HTMLMediaElement* HTMLTrackElement::mediaElement() const |
| 268 { | 268 { |
| 269 Element* parent = parentElement(); | 269 Element* parent = parentElement(); |
| 270 if (isHTMLMediaElement(parent)) | 270 if (isHTMLMediaElement(parent)) |
| 271 return toHTMLMediaElement(parent); | 271 return toHTMLMediaElement(parent); |
| 272 return 0; | 272 return 0; |
| 273 } | 273 } |
| 274 | 274 |
| 275 } | 275 } |
| OLD | NEW |