Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / forms / label / contenteditable-label-focus.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../../resources/js-test.js"></script>
5 <script>
6 function runTest() {
7     var target = document.getElementById('target');
8     debug('Calling target.focus()');
9     target.addEventListener('focus', function(e) {
10         debug('focus received by ' + target);
11     });
12     target.focus();
13     shouldBe('document.activeElement', 'target');
14 }
15 </script>
16 </head>
17 <body onload="runTest()">
18 <label id="target" contenteditable>I'm editable.</label>
19 <button id="button">Just a button</button>
20 </body>
21 </html>
22