Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-content/crashtests/content-disallowed-url.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Disallowed URL protocol in content property should not crash</title>
<img id="target">
<script>
document.getElementById('target').style.content = 'url("chrome://")';
getComputedStyle(document.getElementById('target')).content;
</script>