Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / printing / ellipsis-printing-style.html
1 <!DOCTYPE html>
2
3 <script>
4 if (window.testRunner)
5     testRunner.setPrinting();
6 </script>
7
8 <style>
9 div {
10     font-family: Ahem;
11     background-color: black;
12     color: white;
13     height: 1.5em;
14     width: 10.5em;
15     overflow: hidden;
16     white-space: nowrap;
17     text-overflow: ellipsis;
18 }
19 </style>
20
21 <div>This text should be ellipsized and the ellipsis should visible when printed.</div>