text-crop.xul 870 B

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0"?>
  2. <window class="reftest-wait"
  3. align="left"
  4. xmlns:html="http://www.w3.org/1999/xhtml"
  5. xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  6. <html:style type="text/css">
  7. @font-face {
  8. font-family: firasans;
  9. src: url(../fonts/fira/FiraSans-Regular.otf);
  10. }
  11. vbox {
  12. font-family: firasans;
  13. font-size: 40px;
  14. }
  15. </html:style>
  16. <vbox width="230">
  17. <label id="start" value="" crop="start" />
  18. <label id="end" value="" crop="end" />
  19. <label id="center" value="" crop="center" />
  20. </vbox>
  21. <script>
  22. <![CDATA[
  23. function text(n) {
  24. return "\u{1F310}".repeat(n);
  25. }
  26. document.getElementById("start").value = text(10);
  27. document.getElementById("end").value = text(10);
  28. document.getElementById("center").value = text(10);
  29. document.documentElement.className = "";
  30. ]]>
  31. </script>
  32. </window>