Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / images / image-hover-display-alt.html
blob9f507b7ed61de598f39cbf8e0aae0b6ae1cd3721
1 <!DOCTYPE html>
2 <style>
3 #star {
4 cursor: pointer;
5 font-size: 100px;
6 color: black;
7 margin : 40px;
9 #star:hover {
10 color:red;
12 </style>
13 <img id='star' src='' alt='&#9733;'/>
14 <script>
15 if (window.testRunner) {
16 testRunner.waitUntilDone();
17 var star = document.getElementById('star');
18 eventSender.mouseMoveTo(star.offsetLeft + 2, star.offsetTop + 2);
19 window.requestAnimationFrame(function() {
20 testRunner.notifyDone();
21 });
23 </script>