Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<title>Disallowed URL protocol in content property should not crash</title>
<link rel="help" href="https://crbug.com/40450831">
<img id="target">
<script>
document.getElementById('target').style.content = 'url("chrome://")';
getComputedStyle(document.getElementById('target')).content;
</script>