OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 -- Use of this source code is governed by a BSD-style license that can be |
| 4 -- found in the LICENSE file. |
| 5 --> |
| 6 |
| 7 <style type="text/css"> |
| 8 button { |
| 9 display: flex; |
| 10 height: 32px; |
| 11 margin: 30px; |
| 12 width: 32px; |
| 13 } |
| 14 |
| 15 #container { |
| 16 display: flex; |
| 17 justify-content: space-between; |
| 18 } |
| 19 |
| 20 #tooltip { |
| 21 background: yellow; |
| 22 position: absolute; |
| 23 text-align: center; |
| 24 width: 100px; |
| 25 } |
| 26 </style> |
| 27 |
| 28 <div id="container"> |
| 29 <button id="chocolate" aria-label="Chocolate!"></button> |
| 30 <button id="cherries" aria-label="Cherries!"></button> |
| 31 </div> |
| 32 |
| 33 <!-- Button without a tooltip. --> |
| 34 <button id="other"></button> |
| 35 |
| 36 <div id="tooltip"> |
| 37 <div id="tooltip-label"></div> |
| 38 </div> |
| 39 |
| 40 <script src="../../../../webui/resources/js/assert.js"></script> |
| 41 <script src="../../../../webui/resources/js/util.js"></script> |
| 42 <script src="../../common/js/unittest_util.js"></script> |
| 43 <script src="tooltip_controller.js"></script> |
| 44 <script src="tooltip_controller_unittest.js"></script> |
OLD | NEW |