Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / images / content-url-image-with-alt-text-dynamic-2.html
bloba3236dfffd511634450d229bd073f54c9b9812dd
1 <!DOCTYPE html>
2 <style>
3 #img {content:url('resources/lenna.png')}
4 </style>
5 <img id='img' alt='test image'>
6 <script>
7 document.getElementById('img').style.content = "url('ImageDoesNotExist')";
8 document.getElementById('img').style.content = "url('resources/lenna.png')";
9 document.getElementById('img').style.content = "url('ImageDoesNotExist')";
10 </script>
11 <p>crbug.com/516239: images set by content: url() should behave correctly with alt text.