Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(354)

Side by Side Diff: LayoutTests/platform/chromium-linux/fast/text/international/arabic-vertical-offset.html

Issue 14860019: Move Linux-specific LayoutTests to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <style>
2 /* This font contains a line glyph(U+0606) and a square glyph(U+06E1), and
3 * has a 'mark' feature that locates the square glyph above the line glyph.
4 * This font was created by using FontForge from scratch.
5 */
6 @font-face {
7 font-family: test;
8 src: url(resources/font-for-arabic-offset-test.ttf);
9 }
10 div {
11 font-family: test;
12 font-size: 48pt;
13 }
14 </style>
15 <p>The square glyph should be located above the line glyph.</p>
16 <!-- Use arabic code points to make WebKit use ComplexTextController -->
17 <div>&#x0606;&#x06e1;</div>
18 <script>
19 if (window.testRunner) {
20 testRunner.waitUntilDone();
21 setTimeout(function() { testRunner.notifyDone(); }, 100);
22 }
23 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698