Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / ManualTests / onclick_in_noncontent.html
blob9c1467450129d0209816d7d99052fc6529df25fa
1 <html>
2 <head>
3 <script>
4 function displayAlert(element)
6 alert('You clicked '+element.nodeName);
8 </script>
9 </head>
10 <body>
11 <table style="width:100px;height:100px;border:inset">
12 <tr>
13 <td onclick="displayAlert(this)">Content.</td>
14 </tr>
15 </table>
16 <p>Click anywhere inside the table element and you should get an alert telling you so.</p>
17 <p>Bugzilla 3662 was that clicking in non-content did not fire onclick handler.</p>
18 </body>
19 </html>