Tue, 12 Feb 2013 00:42:41 +0900
added/updated line-break-strict-011 ... 018.xht, added reftests
1.1 --- a/contributors/east-tokyo/submitted/css3-text/line-break-strict-011.xht Mon Feb 11 20:05:11 2013 +0900 1.2 +++ b/contributors/east-tokyo/submitted/css3-text/line-break-strict-011.xht Tue Feb 12 00:42:41 2013 +0900 1.3 @@ -2,7 +2,8 @@ 1.4 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 1.5 <html xmlns="http://www.w3.org/1999/xhtml"> 1.6 <head> 1.7 - <title>CSS Text Test: line-break - strict - Japanese small kana</title> 1.8 + <title>CSS Text Test: line-break - strict</title> 1.9 + <!-- Japanese small kana --> 1.10 <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 1.11 <link rel="help" title="5.2. Breaking Rules for Punctuation: the 'line-break' property" href="http://www.w3.org/TR/css3-text/#line-break" /> 1.12 <link rel="match" href="reftest/line-break-strict-011-ref.xht" /> 1.13 @@ -27,9 +28,6 @@ 1.14 border: 1px solid gray; 1.15 color: blue; 1.16 font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 1.17 - font-size: 1.5em; /* equivalent to 24px */ 1.18 - line-height: 1.5; 1.19 - /* equivalent to 36px: so top-half-leading is 6px, bottom-half-leading is 6px */ 1.20 width: 10em; 1.21 } 1.22 span.target { 1.23 @@ -39,7 +37,7 @@ 1.24 </head> 1.25 <body lang="en"> 1.26 <p> 1.27 - Test passes if the highlighted character in both rectangles is at the exact same horizontal position. 1.28 + Test passes if the highlighted characters in both rectangles are at the exact same horizontal position. 1.29 </p> 1.30 <!-- Japanese small kana: HIRAGANA LETTER SMALL A --> 1.31 <p class="test" lang="ja">
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/contributors/east-tokyo/submitted/css3-text/line-break-strict-012.xht Tue Feb 12 00:42:41 2013 +0900 2.3 @@ -0,0 +1,58 @@ 2.4 +<?xml version="1.0" encoding="UTF-8"?> 2.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 2.7 + <head> 2.8 + <title>CSS Text Test: line-break - strict</title> 2.9 + <!-- Katakana-Hiragana prolonged sound mark --> 2.10 + <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 2.11 + <link rel="help" title="5.2. Breaking Rules for Punctuation: the 'line-break' property" href="http://www.w3.org/TR/css3-text/#line-break" /> 2.12 + <link rel="match" href="reftest/line-break-strict-012-ref.xht" /> 2.13 + <meta http-equiv="content-language" content="en, ja" /> 2.14 + <meta name="flags" content="font should" /> 2.15 + <meta name="assert" content="Breaks text using the most stringent set of line-breaking rules." /> 2.16 + <style type="text/css"> 2.17 + @font-face 2.18 + { 2.19 + font-family: "IPAMincho"; 2.20 + src: url("support/ipam.ttf"); /* Filesize: 8046712 bytes; version: 00303 */ 2.21 + } 2.22 + @font-face 2.23 + { 2.24 + font-family: "IPAGothic"; 2.25 + src: url("support/ipag.ttf"); /* Filesize: 6235344 bytes; version: 00303 */ 2.26 + } 2.27 + .test span { 2.28 + line-break: strict; 2.29 + } 2.30 + p.test, p.control { 2.31 + border: 1px solid gray; 2.32 + color: blue; 2.33 + font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 2.34 + width: 10em; 2.35 + } 2.36 + span.target { 2.37 + background-color: aqua; 2.38 + } 2.39 + </style> 2.40 + </head> 2.41 + <body lang="en"> 2.42 + <p> 2.43 + Test passes if the highlighted characters in each pair of rectangles are at the exact same horizontal position. 2.44 + </p> 2.45 + <!-- Katakana-Hiragana prolonged sound mark - fullwidth --> 2.46 + <p class="test" lang="ja"> 2.47 + <span>サンプル文サンプル文<span class="target">ー</span>サンプル文</span> 2.48 + </p> 2.49 + <p class="control" lang="ja"> 2.50 + <span>サンプル文サンプル<br />文<span class="target">ー</span>サンプル文</span> 2.51 + </p> 2.52 + <hr /> 2.53 + <!-- Katakana-Hiragana prolonged sound mark - halfwidth --> 2.54 + <p class="test" lang="ja"> 2.55 + <span>サンプル文サンプル文<span class="target">ー</span>サンプル文</span> 2.56 + </p> 2.57 + <p class="control" lang="ja"> 2.58 + <span>サンプル文サンプル<br />文<span class="target">ー</span>サンプル文</span> 2.59 + </p> 2.60 + </body> 2.61 +</html> 2.62 \ No newline at end of file
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/contributors/east-tokyo/submitted/css3-text/line-break-strict-013.xht Tue Feb 12 00:42:41 2013 +0900 3.3 @@ -0,0 +1,71 @@ 3.4 +<?xml version="1.0" encoding="UTF-8"?> 3.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 3.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 3.7 + <head> 3.8 + <title>CSS Text Test: line-break - strict</title> 3.9 + <!-- hyphens --> 3.10 + <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 3.11 + <link rel="help" title="5.2. Breaking Rules for Punctuation: the 'line-break' property" href="http://www.w3.org/TR/css3-text/#line-break" /> 3.12 + <link rel="match" href="reftest/line-break-strict-013-ref.xht" /> 3.13 + <meta http-equiv="content-language" content="en, ja" /> 3.14 + <meta name="flags" content="font should" /> 3.15 + <meta name="assert" content="Breaks text using the most stringent set of line-breaking rules." /> 3.16 + <style type="text/css"> 3.17 + @font-face 3.18 + { 3.19 + font-family: "IPAMincho"; 3.20 + src: url("support/ipam.ttf"); /* Filesize: 8046712 bytes; version: 00303 */ 3.21 + } 3.22 + @font-face 3.23 + { 3.24 + font-family: "IPAGothic"; 3.25 + src: url("support/ipag.ttf"); /* Filesize: 6235344 bytes; version: 00303 */ 3.26 + } 3.27 + .test span { 3.28 + line-break: strict; 3.29 + } 3.30 + p.test, p.control { 3.31 + border: 1px solid gray; 3.32 + color: blue; 3.33 + font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 3.34 + width: 10em; 3.35 + } 3.36 + span.target { 3.37 + background-color: aqua; 3.38 + } 3.39 + </style> 3.40 + </head> 3.41 + <body lang="en"> 3.42 + <p> 3.43 + Test passes if the highlighted characters in each pair of rectangles are at the exact same horizontal position. 3.44 + </p> 3.45 + <!-- hyphens --> 3.46 + <p class="test" lang="ja"> 3.47 + <span>サンプル文サンプル文<span class="target">‐</span>サンプル文</span> 3.48 + </p> 3.49 + <p class="control" lang="ja"> 3.50 + <span>サンプル文サンプル<br />文<span class="target">‐</span>サンプル文</span> 3.51 + </p> 3.52 + <hr /> 3.53 + <p class="test" lang="ja"> 3.54 + <span>サンプル文サンプル文<span class="target">–</span>サンプル文</span> 3.55 + </p> 3.56 + <p class="control" lang="ja"> 3.57 + <span>サンプル文サンプル<br />文<span class="target">–</span>サンプル文</span> 3.58 + </p> 3.59 + <hr /> 3.60 + <p class="test" lang="ja"> 3.61 + <span>サンプル文サンプル文<span class="target">〜</span>サンプル文</span> 3.62 + </p> 3.63 + <p class="control" lang="ja"> 3.64 + <span>サンプル文サンプル<br />文<span class="target">〜</span>サンプル文</span> 3.65 + </p> 3.66 + <hr /> 3.67 + <p class="test" lang="ja"> 3.68 + <span>サンプル文サンプル文<span class="target">゠</span>サンプル文</span> 3.69 + </p> 3.70 + <p class="control" lang="ja"> 3.71 + <span>サンプル文サンプル<br />文<span class="target">゠</span>サンプル文</span> 3.72 + </p> 3.73 + </body> 3.74 +</html> 3.75 \ No newline at end of file
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 4.2 +++ b/contributors/east-tokyo/submitted/css3-text/line-break-strict-014.xht Tue Feb 12 00:42:41 2013 +0900 4.3 @@ -0,0 +1,85 @@ 4.4 +<?xml version="1.0" encoding="UTF-8"?> 4.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 4.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 4.7 + <head> 4.8 + <title>CSS Text Test: line-break - strict</title> 4.9 + <!-- iteration mark --> 4.10 + <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 4.11 + <link rel="help" title="5.2. Breaking Rules for Punctuation: the 'line-break' property" href="http://www.w3.org/TR/css3-text/#line-break" /> 4.12 + <link rel="match" href="reftest/line-break-strict-014-ref.xht" /> 4.13 + <meta http-equiv="content-language" content="en, ja" /> 4.14 + <meta name="flags" content="font should" /> 4.15 + <meta name="assert" content="Breaks text using the most stringent set of line-breaking rules." /> 4.16 + <style type="text/css"> 4.17 + @font-face 4.18 + { 4.19 + font-family: "IPAMincho"; 4.20 + src: url("support/ipam.ttf"); /* Filesize: 8046712 bytes; version: 00303 */ 4.21 + } 4.22 + @font-face 4.23 + { 4.24 + font-family: "IPAGothic"; 4.25 + src: url("support/ipag.ttf"); /* Filesize: 6235344 bytes; version: 00303 */ 4.26 + } 4.27 + .test span { 4.28 + line-break: strict; 4.29 + } 4.30 + p.test, p.control { 4.31 + border: 1px solid gray; 4.32 + color: blue; 4.33 + font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 4.34 + width: 10em; 4.35 + } 4.36 + span.target { 4.37 + background-color: aqua; 4.38 + } 4.39 + </style> 4.40 + </head> 4.41 + <body lang="en"> 4.42 + <p> 4.43 + Test passes if the highlighted characters in each pair of rectangles are at the exact same horizontal position. 4.44 + </p> 4.45 + <!-- iteration mark --> 4.46 + <p class="test" lang="ja"> 4.47 + <span>サンプル文サンプル文<span class="target">々</span>サンプル文</span> 4.48 + </p> 4.49 + <p class="control" lang="ja"> 4.50 + <span>サンプル文サンプル<br />文<span class="target">々</span>サンプル文</span> 4.51 + </p> 4.52 + <hr /> 4.53 + <p class="test" lang="ja"> 4.54 + <span>サンプル文サンプル文<span class="target">〻</span>サンプル文</span> 4.55 + </p> 4.56 + <p class="control" lang="ja"> 4.57 + <span>サンプル文サンプル<br />文<span class="target">〻</span>サンプル文</span> 4.58 + </p> 4.59 + <hr /> 4.60 + <p class="test" lang="ja"> 4.61 + <span>サンプル文サンプル文<span class="target">ゝ</span>サンプル文</span> 4.62 + </p> 4.63 + <p class="control" lang="ja"> 4.64 + <span>サンプル文サンプル<br />文<span class="target">ゝ</span>サンプル文</span> 4.65 + </p> 4.66 + <hr /> 4.67 + <p class="test" lang="ja"> 4.68 + <span>サンプル文サンプル文<span class="target">ゞ</span>サンプル文</span> 4.69 + </p> 4.70 + <p class="control" lang="ja"> 4.71 + <span>サンプル文サンプル<br />文<span class="target">ゞ</span>サンプル文</span> 4.72 + </p> 4.73 + <hr /> 4.74 + <p class="test" lang="ja"> 4.75 + <span>サンプル文サンプル文<span class="target">ヽ</span>サンプル文</span> 4.76 + </p> 4.77 + <p class="control" lang="ja"> 4.78 + <span>サンプル文サンプル<br />文<span class="target">ヽ</span>サンプル文</span> 4.79 + </p> 4.80 + <hr /> 4.81 + <p class="test" lang="ja"> 4.82 + <span>サンプル文サンプル文<span class="target">ヾ</span>サンプル文</span> 4.83 + </p> 4.84 + <p class="control" lang="ja"> 4.85 + <span>サンプル文サンプル<br />文<span class="target">ヾ</span>サンプル文</span> 4.86 + </p> 4.87 + </body> 4.88 +</html> 4.89 \ No newline at end of file
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 5.2 +++ b/contributors/east-tokyo/submitted/css3-text/line-break-strict-015.xht Tue Feb 12 00:42:41 2013 +0900 5.3 @@ -0,0 +1,58 @@ 5.4 +<?xml version="1.0" encoding="UTF-8"?> 5.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 5.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 5.7 + <head> 5.8 + <title>CSS Text Test: line-break - strict</title> 5.9 + <!-- inseparable characters --> 5.10 + <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 5.11 + <link rel="help" title="5.2. Breaking Rules for Punctuation: the 'line-break' property" href="http://www.w3.org/TR/css3-text/#line-break" /> 5.12 + <link rel="match" href="reftest/line-break-strict-015-ref.xht" /> 5.13 + <meta http-equiv="content-language" content="en, ja" /> 5.14 + <meta name="flags" content="font should" /> 5.15 + <meta name="assert" content="Breaks text using the most stringent set of line-breaking rules." /> 5.16 + <style type="text/css"> 5.17 + @font-face 5.18 + { 5.19 + font-family: "IPAMincho"; 5.20 + src: url("support/ipam.ttf"); /* Filesize: 8046712 bytes; version: 00303 */ 5.21 + } 5.22 + @font-face 5.23 + { 5.24 + font-family: "IPAGothic"; 5.25 + src: url("support/ipag.ttf"); /* Filesize: 6235344 bytes; version: 00303 */ 5.26 + } 5.27 + .test span { 5.28 + line-break: strict; 5.29 + } 5.30 + p.test, p.control { 5.31 + border: 1px solid gray; 5.32 + color: blue; 5.33 + font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 5.34 + width: 10em; 5.35 + } 5.36 + span.target { 5.37 + background-color: aqua; 5.38 + } 5.39 + </style> 5.40 + </head> 5.41 + <body lang="en"> 5.42 + <p> 5.43 + Test passes if the highlighted characters in each pair of rectangles are at the exact same horizontal position. 5.44 + </p> 5.45 + <!-- inseparable characters TWO DOT LEADER --> 5.46 + <p class="test" lang="ja"> 5.47 + <span>サンプル文サンプル文<span class="target">‥</span>サンプル文</span> 5.48 + </p> 5.49 + <p class="control" lang="ja"> 5.50 + <span>サンプル文サンプル<br />文<span class="target">‥</span>サンプル文</span> 5.51 + </p> 5.52 + <hr /> 5.53 + <!-- inseparable characters HORIZONTAL ELLIPSIS --> 5.54 + <p class="test" lang="ja"> 5.55 + <span>サンプル文サンプル文<span class="target">…</span>サンプル文</span> 5.56 + </p> 5.57 + <p class="control" lang="ja"> 5.58 + <span>サンプル文サンプル<br />文<span class="target">…</span>サンプル文</span> 5.59 + </p> 5.60 + </body> 5.61 +</html> 5.62 \ No newline at end of file
6.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 6.2 +++ b/contributors/east-tokyo/submitted/css3-text/line-break-strict-016.xht Tue Feb 12 00:42:41 2013 +0900 6.3 @@ -0,0 +1,154 @@ 6.4 +<?xml version="1.0" encoding="UTF-8"?> 6.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 6.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 6.7 + <head> 6.8 + <title>CSS Text Test: line-break - strict</title> 6.9 + <!-- centered punctuation marks --> 6.10 + <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 6.11 + <link rel="help" title="5.2. Breaking Rules for Punctuation: the 'line-break' property" href="http://www.w3.org/TR/css3-text/#line-break" /> 6.12 + <link rel="match" href="reftest/line-break-strict-016-ref.xht" /> 6.13 + <meta http-equiv="content-language" content="en, ja" /> 6.14 + <meta name="flags" content="font should" /> 6.15 + <meta name="assert" content="Breaks text using the most stringent set of line-breaking rules." /> 6.16 + <style type="text/css"> 6.17 + @font-face 6.18 + { 6.19 + font-family: "IPAMincho"; 6.20 + src: url("support/ipam.ttf"); /* Filesize: 8046712 bytes; version: 00303 */ 6.21 + } 6.22 + @font-face 6.23 + { 6.24 + font-family: "IPAGothic"; 6.25 + src: url("support/ipag.ttf"); /* Filesize: 6235344 bytes; version: 00303 */ 6.26 + } 6.27 + .test span { 6.28 + line-break: strict; 6.29 + } 6.30 + p.test, p.control { 6.31 + border: 1px solid gray; 6.32 + color: blue; 6.33 + font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 6.34 + width: 10em; 6.35 + } 6.36 + span.target { 6.37 + background-color: aqua; 6.38 + } 6.39 + </style> 6.40 + </head> 6.41 + <body lang="en"> 6.42 + <p> 6.43 + Test passes if the highlighted characters in each pair of rectangles are at the exact same horizontal position. 6.44 + </p> 6.45 + <!-- centered punctuation marks COLON --> 6.46 + <p class="test" lang="ja"> 6.47 + <span>サンプル文サンプル文<span class="target">:</span>サンプル文</span> 6.48 + </p> 6.49 + <p class="control" lang="ja"> 6.50 + <span>サンプル文サンプル<br />文<span class="target">:</span>サンプル文</span> 6.51 + </p> 6.52 + <hr /> 6.53 + <!-- centered punctuation marks SEMICOLON --> 6.54 + <p class="test" lang="ja"> 6.55 + <span>サンプル文サンプル文<span class="target">;</span>サンプル文</span> 6.56 + </p> 6.57 + <p class="control" lang="ja"> 6.58 + <span>サンプル文サンプル<br />文<span class="target">;</span>サンプル文</span> 6.59 + </p> 6.60 + <hr /> 6.61 + <!-- centered punctuation marks KATAKANA MIDDLE DOT --> 6.62 + <p class="test" lang="ja"> 6.63 + <span>サンプル文サンプル文<span class="target">・</span>サンプル文</span> 6.64 + </p> 6.65 + <p class="control" lang="ja"> 6.66 + <span>サンプル文サンプル<br />文<span class="target">・</span>サンプル文</span> 6.67 + </p> 6.68 + <hr /> 6.69 + <!-- centered punctuation marks FULLWIDTH COLON --> 6.70 + <p class="test" lang="ja"> 6.71 + <span>サンプル文サンプル文<span class="target">:</span>サンプル文</span> 6.72 + </p> 6.73 + <p class="control" lang="ja"> 6.74 + <span>サンプル文サンプル<br />文<span class="target">:</span>サンプル文</span> 6.75 + </p> 6.76 + <hr /> 6.77 + <!-- centered punctuation marks FULLWIDTH SEMICOLON --> 6.78 + <p class="test" lang="ja"> 6.79 + <span>サンプル文サンプル文<span class="target">;</span>サンプル文</span> 6.80 + </p> 6.81 + <p class="control" lang="ja"> 6.82 + <span>サンプル文サンプル<br />文<span class="target">;</span>サンプル文</span> 6.83 + </p> 6.84 + <hr /> 6.85 + <!-- centered punctuation marks HALFWIDTH KATAKANA MIDDLE DOT --> 6.86 + <p class="test" lang="ja"> 6.87 + <span>サンプル文サンプル文<span class="target">・</span>サンプル文</span> 6.88 + </p> 6.89 + <p class="control" lang="ja"> 6.90 + <span>サンプル文サンプル<br />文<span class="target">・</span>サンプル文</span> 6.91 + </p> 6.92 + <hr /> 6.93 + <!-- centered punctuation marks EXCLAMATION MARK --> 6.94 + <p class="test" lang="ja"> 6.95 + <span>サンプル文サンプル文<span class="target">!</span>サンプル文</span> 6.96 + </p> 6.97 + <p class="control" lang="ja"> 6.98 + <span>サンプル文サンプル<br />文<span class="target">!</span>サンプル文</span> 6.99 + </p> 6.100 + <hr /> 6.101 + <!-- centered punctuation marks QUESTION MARK --> 6.102 + <p class="test" lang="ja"> 6.103 + <span>サンプル文サンプル文<span class="target">?</span>サンプル文</span> 6.104 + </p> 6.105 + <p class="control" lang="ja"> 6.106 + <span>サンプル文サンプル<br />文<span class="target">?</span>サンプル文</span> 6.107 + </p> 6.108 + <hr /> 6.109 + <!-- centered punctuation marks DOUBLE EXCLAMATION MARK --> 6.110 + <p class="test" lang="ja"> 6.111 + <span>サンプル文サンプル文<span class="target">‼</span>サンプル文</span> 6.112 + </p> 6.113 + <p class="control" lang="ja"> 6.114 + <span>サンプル文サンプル<br />文<span class="target">‼</span>サンプル文</span> 6.115 + </p> 6.116 + <hr /> 6.117 + <!-- centered punctuation marks DOUBLE QUESTION MARK --> 6.118 + <p class="test" lang="ja"> 6.119 + <span>サンプル文サンプル文<span class="target">⁇</span>サンプル文</span> 6.120 + </p> 6.121 + <p class="control" lang="ja"> 6.122 + <span>サンプル文サンプル<br />文<span class="target">⁇</span>サンプル文</span> 6.123 + </p> 6.124 + <hr /> 6.125 + <!-- centered punctuation marks QUESTION EXCLAMATION MARK --> 6.126 + <p class="test" lang="ja"> 6.127 + <span>サンプル文サンプル文<span class="target">⁈</span>サンプル文</span> 6.128 + </p> 6.129 + <p class="control" lang="ja"> 6.130 + <span>サンプル文サンプル<br />文<span class="target">⁈</span>サンプル文</span> 6.131 + </p> 6.132 + <hr /> 6.133 + <!-- centered punctuation marks EXCLAMATION QUESTION MARK --> 6.134 + <p class="test" lang="ja"> 6.135 + <span>サンプル文サンプル文<span class="target">⁉</span>サンプル文</span> 6.136 + </p> 6.137 + <p class="control" lang="ja"> 6.138 + <span>サンプル文サンプル<br />文<span class="target">⁉</span>サンプル文</span> 6.139 + </p> 6.140 + <hr /> 6.141 + <!-- centered punctuation marks FULLWIDTH EXCLAMATION MARK --> 6.142 + <p class="test" lang="ja"> 6.143 + <span>サンプル文サンプル文<span class="target">!</span>サンプル文</span> 6.144 + </p> 6.145 + <p class="control" lang="ja"> 6.146 + <span>サンプル文サンプル<br />文<span class="target">!</span>サンプル文</span> 6.147 + </p> 6.148 + <hr /> 6.149 + <!-- centered punctuation marks FULLWIDTH QUESTION MARK --> 6.150 + <p class="test" lang="ja"> 6.151 + <span>サンプル文サンプル文<span class="target">?</span>サンプル文</span> 6.152 + </p> 6.153 + <p class="control" lang="ja"> 6.154 + <span>サンプル文サンプル<br />文<span class="target">?</span>サンプル文</span> 6.155 + </p> 6.156 + </body> 6.157 +</html> 6.158 \ No newline at end of file
7.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 7.2 +++ b/contributors/east-tokyo/submitted/css3-text/line-break-strict-017.xht Tue Feb 12 00:42:41 2013 +0900 7.3 @@ -0,0 +1,114 @@ 7.4 +<?xml version="1.0" encoding="UTF-8"?> 7.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 7.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 7.7 + <head> 7.8 + <title>CSS Text Test: line-break - strict</title> 7.9 + <!-- postfixes --> 7.10 + <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 7.11 + <link rel="help" title="5.2. Breaking Rules for Punctuation: the 'line-break' property" href="http://www.w3.org/TR/css3-text/#line-break" /> 7.12 + <link rel="match" href="reftest/line-break-strict-017-ref.xht" /> 7.13 + <meta http-equiv="content-language" content="en, ja" /> 7.14 + <meta name="flags" content="font should" /> 7.15 + <meta name="assert" content="Breaks text using the most stringent set of line-breaking rules." /> 7.16 + <style type="text/css"> 7.17 + @font-face 7.18 + { 7.19 + font-family: "IPAMincho"; 7.20 + src: url("support/ipam.ttf"); /* Filesize: 8046712 bytes; version: 00303 */ 7.21 + } 7.22 + @font-face 7.23 + { 7.24 + font-family: "IPAGothic"; 7.25 + src: url("support/ipag.ttf"); /* Filesize: 6235344 bytes; version: 00303 */ 7.26 + } 7.27 + .test span { 7.28 + line-break: strict; 7.29 + } 7.30 + p.test, p.control { 7.31 + border: 1px solid gray; 7.32 + color: blue; 7.33 + font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 7.34 + width: 10em; 7.35 + } 7.36 + span.target { 7.37 + background-color: aqua; 7.38 + } 7.39 + </style> 7.40 + </head> 7.41 + <body lang="en"> 7.42 + <p> 7.43 + Test passes if the highlighted characters in each pair of rectangles are at the exact same horizontal position. 7.44 + </p> 7.45 + <!-- postfixes PERCENT SIGN --> 7.46 + <p class="test" lang="ja"> 7.47 + <span>サンプル文サンプル文<span class="target">%</span>サンプル文</span> 7.48 + </p> 7.49 + <p class="control" lang="ja"> 7.50 + <span>サンプル文サンプル<br />文<span class="target">%</span>サンプル文</span> 7.51 + </p> 7.52 + <hr /> 7.53 + <!-- postfixes CENT SIGN --> 7.54 + <p class="test" lang="ja"> 7.55 + <span>サンプル文サンプル文<span class="target">¢</span>サンプル文</span> 7.56 + </p> 7.57 + <p class="control" lang="ja"> 7.58 + <span>サンプル文サンプル<br />文<span class="target">¢</span>サンプル文</span> 7.59 + </p> 7.60 + <hr /> 7.61 + <!-- postfixes DEGREE SIGN --> 7.62 + <p class="test" lang="ja"> 7.63 + <span>サンプル文サンプル文<span class="target">°</span>サンプル文</span> 7.64 + </p> 7.65 + <p class="control" lang="ja"> 7.66 + <span>サンプル文サンプル<br />文<span class="target">°</span>サンプル文</span> 7.67 + </p> 7.68 + <hr /> 7.69 + <!-- postfixes PER MILLE SIGN --> 7.70 + <p class="test" lang="ja"> 7.71 + <span>サンプル文サンプル文<span class="target">‰</span>サンプル文</span> 7.72 + </p> 7.73 + <p class="control" lang="ja"> 7.74 + <span>サンプル文サンプル<br />文<span class="target">‰</span>サンプル文</span> 7.75 + </p> 7.76 + <hr /> 7.77 + <!-- postfixes PRIME --> 7.78 + <p class="test" lang="ja"> 7.79 + <span>サンプル文サンプル文<span class="target">′</span>サンプル文</span> 7.80 + </p> 7.81 + <p class="control" lang="ja"> 7.82 + <span>サンプル文サンプル<br />文<span class="target">′</span>サンプル文</span> 7.83 + </p> 7.84 + <hr /> 7.85 + <!-- postfixes DOUBLE PRIME --> 7.86 + <p class="test" lang="ja"> 7.87 + <span>サンプル文サンプル文<span class="target">″</span>サンプル文</span> 7.88 + </p> 7.89 + <p class="control" lang="ja"> 7.90 + <span>サンプル文サンプル<br />文<span class="target">″</span>サンプル文</span> 7.91 + </p> 7.92 + <hr /> 7.93 + <!-- postfixes DEGREE CELSIUS --> 7.94 + <p class="test" lang="ja"> 7.95 + <span>サンプル文サンプル文<span class="target">℃</span>サンプル文</span> 7.96 + </p> 7.97 + <p class="control" lang="ja"> 7.98 + <span>サンプル文サンプル<br />文<span class="target">℃</span>サンプル文</span> 7.99 + </p> 7.100 + <hr /> 7.101 + <!-- postfixes FULLWIDTH PERCENT SIGN --> 7.102 + <p class="test" lang="ja"> 7.103 + <span>サンプル文サンプル文<span class="target">%</span>サンプル文</span> 7.104 + </p> 7.105 + <p class="control" lang="ja"> 7.106 + <span>サンプル文サンプル<br />文<span class="target">%</span>サンプル文</span> 7.107 + </p> 7.108 + <hr /> 7.109 + <!-- postfixes FULLWIDTH CENT SIGN --> 7.110 + <p class="test" lang="ja"> 7.111 + <span>サンプル文サンプル文<span class="target">¢</span>サンプル文</span> 7.112 + </p> 7.113 + <p class="control" lang="ja"> 7.114 + <span>サンプル文サンプル<br />文<span class="target">¢</span>サンプル文</span> 7.115 + </p> 7.116 + </body> 7.117 +</html> 7.118 \ No newline at end of file
8.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 8.2 +++ b/contributors/east-tokyo/submitted/css3-text/line-break-strict-018.xht Tue Feb 12 00:42:41 2013 +0900 8.3 @@ -0,0 +1,106 @@ 8.4 +<?xml version="1.0" encoding="UTF-8"?> 8.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 8.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 8.7 + <head> 8.8 + <title>CSS Text Test: line-break - strict</title> 8.9 + <!-- prefixes --> 8.10 + <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 8.11 + <link rel="help" title="5.2. Breaking Rules for Punctuation: the 'line-break' property" href="http://www.w3.org/TR/css3-text/#line-break" /> 8.12 + <link rel="match" href="reftest/line-break-strict-018-ref.xht" /> 8.13 + <meta http-equiv="content-language" content="en, ja" /> 8.14 + <meta name="flags" content="font should" /> 8.15 + <meta name="assert" content="Breaks text using the most stringent set of line-breaking rules." /> 8.16 + <style type="text/css"> 8.17 + @font-face 8.18 + { 8.19 + font-family: "IPAMincho"; 8.20 + src: url("support/ipam.ttf"); /* Filesize: 8046712 bytes; version: 00303 */ 8.21 + } 8.22 + @font-face 8.23 + { 8.24 + font-family: "IPAGothic"; 8.25 + src: url("support/ipag.ttf"); /* Filesize: 6235344 bytes; version: 00303 */ 8.26 + } 8.27 + .test span { 8.28 + line-break: strict; 8.29 + } 8.30 + p.test, p.control { 8.31 + border: 1px solid gray; 8.32 + color: blue; 8.33 + font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 8.34 + width: 10em; 8.35 + } 8.36 + span.target { 8.37 + background-color: aqua; 8.38 + } 8.39 + </style> 8.40 + </head> 8.41 + <body lang="en"> 8.42 + <p> 8.43 + Test passes if the highlighted characters in each pair of rectangles are at the exact same horizontal position. 8.44 + </p> 8.45 + <!-- prefixes DOLLAR SIGN --> 8.46 + <p class="test" lang="ja"> 8.47 + <span>サンプル文サンプル文<span class="target">$</span>サンプル文</span> 8.48 + </p> 8.49 + <p class="control" lang="ja"> 8.50 + <span>サンプル文サンプル<br />文<span class="target">$</span>サンプル文</span> 8.51 + </p> 8.52 + <hr /> 8.53 + <!-- prefixes POUND SIGN --> 8.54 + <p class="test" lang="ja"> 8.55 + <span>サンプル文サンプル文<span class="target">£</span>サンプル文</span> 8.56 + </p> 8.57 + <p class="control" lang="ja"> 8.58 + <span>サンプル文サンプル<br />文<span class="target">£</span>サンプル文</span> 8.59 + </p> 8.60 + <hr /> 8.61 + <!-- prefixes YEN SIGN --> 8.62 + <p class="test" lang="ja"> 8.63 + <span>サンプル文サンプル文<span class="target">¥</span>サンプル文</span> 8.64 + </p> 8.65 + <p class="control" lang="ja"> 8.66 + <span>サンプル文サンプル<br />文<span class="target">¥</span>サンプル文</span> 8.67 + </p> 8.68 + <hr /> 8.69 + <!-- prefixes EURO SIGN --> 8.70 + <p class="test" lang="ja"> 8.71 + <span>サンプル文サンプル文<span class="target">€</span>サンプル文</span> 8.72 + </p> 8.73 + <p class="control" lang="ja"> 8.74 + <span>サンプル文サンプル<br />文<span class="target">€</span>サンプル文</span> 8.75 + </p> 8.76 + <hr /> 8.77 + <!-- prefixes NUMERO SIGN --> 8.78 + <p class="test" lang="ja"> 8.79 + <span>サンプル文サンプル文<span class="target">№</span>サンプル文</span> 8.80 + </p> 8.81 + <p class="control" lang="ja"> 8.82 + <span>サンプル文サンプル<br />文<span class="target">№</span>サンプル文</span> 8.83 + </p> 8.84 + <hr /> 8.85 + <!-- prefixes FULLWIDTH DOLLAR SIGN --> 8.86 + <p class="test" lang="ja"> 8.87 + <span>サンプル文サンプル文<span class="target">$</span>サンプル文</span> 8.88 + </p> 8.89 + <p class="control" lang="ja"> 8.90 + <span>サンプル文サンプル<br />文<span class="target">$</span>サンプル文</span> 8.91 + </p> 8.92 + <hr /> 8.93 + <!-- prefixes FULLWIDTH POUND SIGN --> 8.94 + <p class="test" lang="ja"> 8.95 + <span>サンプル文サンプル文<span class="target">£</span>サンプル文</span> 8.96 + </p> 8.97 + <p class="control" lang="ja"> 8.98 + <span>サンプル文サンプル<br />文<span class="target">£</span>サンプル文</span> 8.99 + </p> 8.100 + <hr /> 8.101 + <!-- prefixes FULLWIDTH YEN SIGN --> 8.102 + <p class="test" lang="ja"> 8.103 + <span>サンプル文サンプル文<span class="target">¥</span>サンプル文</span> 8.104 + </p> 8.105 + <p class="control" lang="ja"> 8.106 + <span>サンプル文サンプル<br />文<span class="target">¥</span>サンプル文</span> 8.107 + </p> 8.108 + </body> 8.109 +</html> 8.110 \ No newline at end of file
9.1 --- a/contributors/east-tokyo/submitted/css3-text/reftest/line-break-strict-011-ref.xht Mon Feb 11 20:05:11 2013 +0900 9.2 +++ b/contributors/east-tokyo/submitted/css3-text/reftest/line-break-strict-011-ref.xht Tue Feb 12 00:42:41 2013 +0900 9.3 @@ -3,7 +3,7 @@ 9.4 <html xmlns="http://www.w3.org/1999/xhtml"> 9.5 <head> 9.6 <title>CSS Reftest Reference</title> 9.7 - <!-- reftest for line-break - strict - Japanese small kana --> 9.8 + <!-- reftest for line-break-strict-011.xht --> 9.9 <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 9.10 <meta http-equiv="content-language" content="en, ja" /> 9.11 <style type="text/css"> 9.12 @@ -24,9 +24,6 @@ 9.13 border: 1px solid gray; 9.14 color: blue; 9.15 font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 9.16 - font-size: 1.5em; /* equivalent to 24px */ 9.17 - line-height: 1.5; 9.18 - /* equivalent to 36px: so top-half-leading is 6px, bottom-half-leading is 6px */ 9.19 width: 10em; 9.20 } 9.21 span.target { 9.22 @@ -36,7 +33,7 @@ 9.23 </head> 9.24 <body lang="en"> 9.25 <p> 9.26 - Test passes if the highlighted character in both rectangles is at the exact same horizontal position. 9.27 + Test passes if the highlighted characters in both rectangles are at the exact same horizontal position. 9.28 </p> 9.29 <!-- Japanese small kana: HIRAGANA LETTER SMALL A --> 9.30 <p class="control" lang="ja">
10.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 10.2 +++ b/contributors/east-tokyo/submitted/css3-text/reftest/line-break-strict-012-ref.xht Tue Feb 12 00:42:41 2013 +0900 10.3 @@ -0,0 +1,54 @@ 10.4 +<?xml version="1.0" encoding="UTF-8"?> 10.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 10.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 10.7 + <head> 10.8 + <title>CSS Reftest Reference</title> 10.9 + <!-- reftest for line-break-strict-012.xht --> 10.10 + <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 10.11 + <meta http-equiv="content-language" content="en, ja" /> 10.12 + <style type="text/css"> 10.13 + @font-face 10.14 + { 10.15 + font-family: "IPAMincho"; 10.16 + src: url("support/ipam.ttf"); /* Filesize: 8046712 bytes; version: 00303 */ 10.17 + } 10.18 + @font-face 10.19 + { 10.20 + font-family: "IPAGothic"; 10.21 + src: url("support/ipag.ttf"); /* Filesize: 6235344 bytes; version: 00303 */ 10.22 + } 10.23 + .test span { 10.24 + line-break: strict; 10.25 + } 10.26 + p.control { 10.27 + border: 1px solid gray; 10.28 + color: blue; 10.29 + font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 10.30 + width: 10em; 10.31 + } 10.32 + span.target { 10.33 + background-color: aqua; 10.34 + } 10.35 + </style> 10.36 + </head> 10.37 + <body lang="en"> 10.38 + <p> 10.39 + Test passes if the highlighted characters in each pair of rectangles are at the exact same horizontal position. 10.40 + </p> 10.41 + <!-- Katakana-Hiragana prolonged sound mark - fullwidth --> 10.42 + <p class="control" lang="ja"> 10.43 + <span>サンプル文サンプル<br />文<span class="target">ー</span>サンプル文</span> 10.44 + </p> 10.45 + <p class="control" lang="ja"> 10.46 + <span>サンプル文サンプル<br />文<span class="target">ー</span>サンプル文</span> 10.47 + </p> 10.48 + <hr /> 10.49 + <!-- Katakana-Hiragana prolonged sound mark - halfwidth --> 10.50 + <p class="control" lang="ja"> 10.51 + <span>サンプル文サンプル<br />文<span class="target">ー</span>サンプル文</span> 10.52 + </p> 10.53 + <p class="control" lang="ja"> 10.54 + <span>サンプル文サンプル<br />文<span class="target">ー</span>サンプル文</span> 10.55 + </p> 10.56 + </body> 10.57 +</html> 10.58 \ No newline at end of file
11.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 11.2 +++ b/contributors/east-tokyo/submitted/css3-text/reftest/line-break-strict-013-ref.xht Tue Feb 12 00:42:41 2013 +0900 11.3 @@ -0,0 +1,67 @@ 11.4 +<?xml version="1.0" encoding="UTF-8"?> 11.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 11.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 11.7 + <head> 11.8 + <title>CSS Reftest Reference</title> 11.9 + <!-- reftest for line-break-strict-013.xht --> 11.10 + <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 11.11 + <meta http-equiv="content-language" content="en, ja" /> 11.12 + <style type="text/css"> 11.13 + @font-face 11.14 + { 11.15 + font-family: "IPAMincho"; 11.16 + src: url("support/ipam.ttf"); /* Filesize: 8046712 bytes; version: 00303 */ 11.17 + } 11.18 + @font-face 11.19 + { 11.20 + font-family: "IPAGothic"; 11.21 + src: url("support/ipag.ttf"); /* Filesize: 6235344 bytes; version: 00303 */ 11.22 + } 11.23 + .test span { 11.24 + line-break: strict; 11.25 + } 11.26 + p.control { 11.27 + border: 1px solid gray; 11.28 + color: blue; 11.29 + font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 11.30 + width: 10em; 11.31 + } 11.32 + span.target { 11.33 + background-color: aqua; 11.34 + } 11.35 + </style> 11.36 + </head> 11.37 + <body lang="en"> 11.38 + <p> 11.39 + Test passes if the highlighted characters in each pair of rectangles are at the exact same horizontal position. 11.40 + </p> 11.41 + <!-- hyphens --> 11.42 + <p class="control" lang="ja"> 11.43 + <span>サンプル文サンプル<br />文<span class="target">‐</span>サンプル文</span> 11.44 + </p> 11.45 + <p class="control" lang="ja"> 11.46 + <span>サンプル文サンプル<br />文<span class="target">‐</span>サンプル文</span> 11.47 + </p> 11.48 + <hr /> 11.49 + <p class="control" lang="ja"> 11.50 + <span>サンプル文サンプル<br />文<span class="target">–</span>サンプル文</span> 11.51 + </p> 11.52 + <p class="control" lang="ja"> 11.53 + <span>サンプル文サンプル<br />文<span class="target">–</span>サンプル文</span> 11.54 + </p> 11.55 + <hr /> 11.56 + <p class="control" lang="ja"> 11.57 + <span>サンプル文サンプル<br />文<span class="target">〜</span>サンプル文</span> 11.58 + </p> 11.59 + <p class="control" lang="ja"> 11.60 + <span>サンプル文サンプル<br />文<span class="target">〜</span>サンプル文</span> 11.61 + </p> 11.62 + <hr /> 11.63 + <p class="control" lang="ja"> 11.64 + <span>サンプル文サンプル<br />文<span class="target">゠</span>サンプル文</span> 11.65 + </p> 11.66 + <p class="control" lang="ja"> 11.67 + <span>サンプル文サンプル<br />文<span class="target">゠</span>サンプル文</span> 11.68 + </p> 11.69 + </body> 11.70 +</html> 11.71 \ No newline at end of file
12.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 12.2 +++ b/contributors/east-tokyo/submitted/css3-text/reftest/line-break-strict-014-ref.xht Tue Feb 12 00:42:41 2013 +0900 12.3 @@ -0,0 +1,81 @@ 12.4 +<?xml version="1.0" encoding="UTF-8"?> 12.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 12.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 12.7 + <head> 12.8 + <title>CSS Reftest Reference</title> 12.9 + <!-- reftest for line-break-strict-014.xht --> 12.10 + <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 12.11 + <meta http-equiv="content-language" content="en, ja" /> 12.12 + <style type="text/css"> 12.13 + @font-face 12.14 + { 12.15 + font-family: "IPAMincho"; 12.16 + src: url("support/ipam.ttf"); /* Filesize: 8046712 bytes; version: 00303 */ 12.17 + } 12.18 + @font-face 12.19 + { 12.20 + font-family: "IPAGothic"; 12.21 + src: url("support/ipag.ttf"); /* Filesize: 6235344 bytes; version: 00303 */ 12.22 + } 12.23 + .test span { 12.24 + line-break: strict; 12.25 + } 12.26 + p.control { 12.27 + border: 1px solid gray; 12.28 + color: blue; 12.29 + font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 12.30 + width: 10em; 12.31 + } 12.32 + span.target { 12.33 + background-color: aqua; 12.34 + } 12.35 + </style> 12.36 + </head> 12.37 + <body lang="en"> 12.38 + <p> 12.39 + Test passes if the highlighted characters in each pair of rectangles are at the exact same horizontal position. 12.40 + </p> 12.41 + <!-- iteration mark --> 12.42 + <p class="control" lang="ja"> 12.43 + <span>サンプル文サンプル<br />文<span class="target">々</span>サンプル文</span> 12.44 + </p> 12.45 + <p class="control" lang="ja"> 12.46 + <span>サンプル文サンプル<br />文<span class="target">々</span>サンプル文</span> 12.47 + </p> 12.48 + <hr /> 12.49 + <p class="control" lang="ja"> 12.50 + <span>サンプル文サンプル<br />文<span class="target">〻</span>サンプル文</span> 12.51 + </p> 12.52 + <p class="control" lang="ja"> 12.53 + <span>サンプル文サンプル<br />文<span class="target">〻</span>サンプル文</span> 12.54 + </p> 12.55 + <hr /> 12.56 + <p class="control" lang="ja"> 12.57 + <span>サンプル文サンプル<br />文<span class="target">ゝ</span>サンプル文</span> 12.58 + </p> 12.59 + <p class="control" lang="ja"> 12.60 + <span>サンプル文サンプル<br />文<span class="target">ゝ</span>サンプル文</span> 12.61 + </p> 12.62 + <hr /> 12.63 + <p class="control" lang="ja"> 12.64 + <span>サンプル文サンプル<br />文<span class="target">ゞ</span>サンプル文</span> 12.65 + </p> 12.66 + <p class="control" lang="ja"> 12.67 + <span>サンプル文サンプル<br />文<span class="target">ゞ</span>サンプル文</span> 12.68 + </p> 12.69 + <hr /> 12.70 + <p class="control" lang="ja"> 12.71 + <span>サンプル文サンプル<br />文<span class="target">ヽ</span>サンプル文</span> 12.72 + </p> 12.73 + <p class="control" lang="ja"> 12.74 + <span>サンプル文サンプル<br />文<span class="target">ヽ</span>サンプル文</span> 12.75 + </p> 12.76 + <hr /> 12.77 + <p class="control" lang="ja"> 12.78 + <span>サンプル文サンプル<br />文<span class="target">ヾ</span>サンプル文</span> 12.79 + </p> 12.80 + <p class="control" lang="ja"> 12.81 + <span>サンプル文サンプル<br />文<span class="target">ヾ</span>サンプル文</span> 12.82 + </p> 12.83 + </body> 12.84 +</html> 12.85 \ No newline at end of file
13.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 13.2 +++ b/contributors/east-tokyo/submitted/css3-text/reftest/line-break-strict-015-ref.xht Tue Feb 12 00:42:41 2013 +0900 13.3 @@ -0,0 +1,54 @@ 13.4 +<?xml version="1.0" encoding="UTF-8"?> 13.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 13.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 13.7 + <head> 13.8 + <title>CSS Reftest Reference</title> 13.9 + <!-- reftest for line-break-strict-015.xht --> 13.10 + <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 13.11 + <meta http-equiv="content-language" content="en, ja" /> 13.12 + <style type="text/css"> 13.13 + @font-face 13.14 + { 13.15 + font-family: "IPAMincho"; 13.16 + src: url("support/ipam.ttf"); /* Filesize: 8046712 bytes; version: 00303 */ 13.17 + } 13.18 + @font-face 13.19 + { 13.20 + font-family: "IPAGothic"; 13.21 + src: url("support/ipag.ttf"); /* Filesize: 6235344 bytes; version: 00303 */ 13.22 + } 13.23 + .test span { 13.24 + line-break: strict; 13.25 + } 13.26 + p.control { 13.27 + border: 1px solid gray; 13.28 + color: blue; 13.29 + font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 13.30 + width: 10em; 13.31 + } 13.32 + span.target { 13.33 + background-color: aqua; 13.34 + } 13.35 + </style> 13.36 + </head> 13.37 + <body lang="en"> 13.38 + <p> 13.39 + Test passes if the highlighted characters in each pair of rectangles are at the exact same horizontal position. 13.40 + </p> 13.41 + <!-- inseparable characters TWO DOT LEADER --> 13.42 + <p class="control" lang="ja"> 13.43 + <span>サンプル文サンプル<br />文<span class="target">‥</span>サンプル文</span> 13.44 + </p> 13.45 + <p class="control" lang="ja"> 13.46 + <span>サンプル文サンプル<br />文<span class="target">‥</span>サンプル文</span> 13.47 + </p> 13.48 + <hr /> 13.49 + <!-- inseparable characters HORIZONTAL ELLIPSIS --> 13.50 + <p class="control" lang="ja"> 13.51 + <span>サンプル文サンプル<br />文<span class="target">…</span>サンプル文</span> 13.52 + </p> 13.53 + <p class="control" lang="ja"> 13.54 + <span>サンプル文サンプル<br />文<span class="target">…</span>サンプル文</span> 13.55 + </p> 13.56 + </body> 13.57 +</html> 13.58 \ No newline at end of file
14.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 14.2 +++ b/contributors/east-tokyo/submitted/css3-text/reftest/line-break-strict-016-ref.xht Tue Feb 12 00:42:41 2013 +0900 14.3 @@ -0,0 +1,150 @@ 14.4 +<?xml version="1.0" encoding="UTF-8"?> 14.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 14.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 14.7 + <head> 14.8 + <title>CSS Reftest Reference</title> 14.9 + <!-- reftest for line-break-strict-016.xht --> 14.10 + <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 14.11 + <meta http-equiv="content-language" content="en, ja" /> 14.12 + <style type="text/css"> 14.13 + @font-face 14.14 + { 14.15 + font-family: "IPAMincho"; 14.16 + src: url("support/ipam.ttf"); /* Filesize: 8046712 bytes; version: 00303 */ 14.17 + } 14.18 + @font-face 14.19 + { 14.20 + font-family: "IPAGothic"; 14.21 + src: url("support/ipag.ttf"); /* Filesize: 6235344 bytes; version: 00303 */ 14.22 + } 14.23 + .test span { 14.24 + line-break: strict; 14.25 + } 14.26 + p.control { 14.27 + border: 1px solid gray; 14.28 + color: blue; 14.29 + font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 14.30 + width: 10em; 14.31 + } 14.32 + span.target { 14.33 + background-color: aqua; 14.34 + } 14.35 + </style> 14.36 + </head> 14.37 + <body lang="en"> 14.38 + <p> 14.39 + Test passes if the highlighted characters in each pair of rectangles are at the exact same horizontal position. 14.40 + </p> 14.41 + <!-- centered punctuation marks COLON --> 14.42 + <p class="control" lang="ja"> 14.43 + <span>サンプル文サンプル<br />文<span class="target">:</span>サンプル文</span> 14.44 + </p> 14.45 + <p class="control" lang="ja"> 14.46 + <span>サンプル文サンプル<br />文<span class="target">:</span>サンプル文</span> 14.47 + </p> 14.48 + <hr /> 14.49 + <!-- centered punctuation marks SEMICOLON --> 14.50 + <p class="control" lang="ja"> 14.51 + <span>サンプル文サンプル<br />文<span class="target">;</span>サンプル文</span> 14.52 + </p> 14.53 + <p class="control" lang="ja"> 14.54 + <span>サンプル文サンプル<br />文<span class="target">;</span>サンプル文</span> 14.55 + </p> 14.56 + <hr /> 14.57 + <!-- centered punctuation marks KATAKANA MIDDLE DOT --> 14.58 + <p class="control" lang="ja"> 14.59 + <span>サンプル文サンプル<br />文<span class="target">・</span>サンプル文</span> 14.60 + </p> 14.61 + <p class="control" lang="ja"> 14.62 + <span>サンプル文サンプル<br />文<span class="target">・</span>サンプル文</span> 14.63 + </p> 14.64 + <hr /> 14.65 + <!-- centered punctuation marks FULLWIDTH COLON --> 14.66 + <p class="control" lang="ja"> 14.67 + <span>サンプル文サンプル<br />文<span class="target">:</span>サンプル文</span> 14.68 + </p> 14.69 + <p class="control" lang="ja"> 14.70 + <span>サンプル文サンプル<br />文<span class="target">:</span>サンプル文</span> 14.71 + </p> 14.72 + <hr /> 14.73 + <!-- centered punctuation marks FULLWIDTH SEMICOLON --> 14.74 + <p class="control" lang="ja"> 14.75 + <span>サンプル文サンプル<br />文<span class="target">;</span>サンプル文</span> 14.76 + </p> 14.77 + <p class="control" lang="ja"> 14.78 + <span>サンプル文サンプル<br />文<span class="target">;</span>サンプル文</span> 14.79 + </p> 14.80 + <hr /> 14.81 + <!-- centered punctuation marks HALFWIDTH KATAKANA MIDDLE DOT --> 14.82 + <p class="control" lang="ja"> 14.83 + <span>サンプル文サンプル<br />文<span class="target">・</span>サンプル文</span> 14.84 + </p> 14.85 + <p class="control" lang="ja"> 14.86 + <span>サンプル文サンプル<br />文<span class="target">・</span>サンプル文</span> 14.87 + </p> 14.88 + <hr /> 14.89 + <!-- centered punctuation marks EXCLAMATION MARK --> 14.90 + <p class="control" lang="ja"> 14.91 + <span>サンプル文サンプル<br />文<span class="target">!</span>サンプル文</span> 14.92 + </p> 14.93 + <p class="control" lang="ja"> 14.94 + <span>サンプル文サンプル<br />文<span class="target">!</span>サンプル文</span> 14.95 + </p> 14.96 + <hr /> 14.97 + <!-- centered punctuation marks QUESTION MARK --> 14.98 + <p class="control" lang="ja"> 14.99 + <span>サンプル文サンプル<br />文<span class="target">?</span>サンプル文</span> 14.100 + </p> 14.101 + <p class="control" lang="ja"> 14.102 + <span>サンプル文サンプル<br />文<span class="target">?</span>サンプル文</span> 14.103 + </p> 14.104 + <hr /> 14.105 + <!-- centered punctuation marks DOUBLE EXCLAMATION MARK --> 14.106 + <p class="control" lang="ja"> 14.107 + <span>サンプル文サンプル<br />文<span class="target">‼</span>サンプル文</span> 14.108 + </p> 14.109 + <p class="control" lang="ja"> 14.110 + <span>サンプル文サンプル<br />文<span class="target">‼</span>サンプル文</span> 14.111 + </p> 14.112 + <hr /> 14.113 + <!-- centered punctuation marks DOUBLE QUESTION MARK --> 14.114 + <p class="control" lang="ja"> 14.115 + <span>サンプル文サンプル<br />文<span class="target">⁇</span>サンプル文</span> 14.116 + </p> 14.117 + <p class="control" lang="ja"> 14.118 + <span>サンプル文サンプル<br />文<span class="target">⁇</span>サンプル文</span> 14.119 + </p> 14.120 + <hr /> 14.121 + <!-- centered punctuation marks QUESTION EXCLAMATION MARK --> 14.122 + <p class="control" lang="ja"> 14.123 + <span>サンプル文サンプル<br />文<span class="target">⁈</span>サンプル文</span> 14.124 + </p> 14.125 + <p class="control" lang="ja"> 14.126 + <span>サンプル文サンプル<br />文<span class="target">⁈</span>サンプル文</span> 14.127 + </p> 14.128 + <hr /> 14.129 + <!-- centered punctuation marks EXCLAMATION QUESTION MARK --> 14.130 + <p class="control" lang="ja"> 14.131 + <span>サンプル文サンプル<br />文<span class="target">⁉</span>サンプル文</span> 14.132 + </p> 14.133 + <p class="control" lang="ja"> 14.134 + <span>サンプル文サンプル<br />文<span class="target">⁉</span>サンプル文</span> 14.135 + </p> 14.136 + <hr /> 14.137 + <!-- centered punctuation marks FULLWIDTH EXCLAMATION MARK --> 14.138 + <p class="control" lang="ja"> 14.139 + <span>サンプル文サンプル<br />文<span class="target">!</span>サンプル文</span> 14.140 + </p> 14.141 + <p class="control" lang="ja"> 14.142 + <span>サンプル文サンプル<br />文<span class="target">!</span>サンプル文</span> 14.143 + </p> 14.144 + <hr /> 14.145 + <!-- centered punctuation marks FULLWIDTH QUESTION MARK --> 14.146 + <p class="control" lang="ja"> 14.147 + <span>サンプル文サンプル<br />文<span class="target">?</span>サンプル文</span> 14.148 + </p> 14.149 + <p class="control" lang="ja"> 14.150 + <span>サンプル文サンプル<br />文<span class="target">?</span>サンプル文</span> 14.151 + </p> 14.152 + </body> 14.153 +</html> 14.154 \ No newline at end of file
15.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 15.2 +++ b/contributors/east-tokyo/submitted/css3-text/reftest/line-break-strict-017-ref.xht Tue Feb 12 00:42:41 2013 +0900 15.3 @@ -0,0 +1,110 @@ 15.4 +<?xml version="1.0" encoding="UTF-8"?> 15.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 15.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 15.7 + <head> 15.8 + <title>CSS Reftest Reference</title> 15.9 + <!-- reftest for line-break-strict-017.xht --> 15.10 + <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 15.11 + <meta http-equiv="content-language" content="en, ja" /> 15.12 + <style type="text/css"> 15.13 + @font-face 15.14 + { 15.15 + font-family: "IPAMincho"; 15.16 + src: url("support/ipam.ttf"); /* Filesize: 8046712 bytes; version: 00303 */ 15.17 + } 15.18 + @font-face 15.19 + { 15.20 + font-family: "IPAGothic"; 15.21 + src: url("support/ipag.ttf"); /* Filesize: 6235344 bytes; version: 00303 */ 15.22 + } 15.23 + .test span { 15.24 + line-break: strict; 15.25 + } 15.26 + p.control { 15.27 + border: 1px solid gray; 15.28 + color: blue; 15.29 + font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 15.30 + width: 10em; 15.31 + } 15.32 + span.target { 15.33 + background-color: aqua; 15.34 + } 15.35 + </style> 15.36 + </head> 15.37 + <body lang="en"> 15.38 + <p> 15.39 + Test passes if the highlighted characters in each pair of rectangles are at the exact same horizontal position. 15.40 + </p> 15.41 + <!-- postfixes PERCENT SIGN --> 15.42 + <p class="control" lang="ja"> 15.43 + <span>サンプル文サンプル<br />文<span class="target">%</span>サンプル文</span> 15.44 + </p> 15.45 + <p class="control" lang="ja"> 15.46 + <span>サンプル文サンプル<br />文<span class="target">%</span>サンプル文</span> 15.47 + </p> 15.48 + <hr /> 15.49 + <!-- postfixes CENT SIGN --> 15.50 + <p class="control" lang="ja"> 15.51 + <span>サンプル文サンプル<br />文<span class="target">¢</span>サンプル文</span> 15.52 + </p> 15.53 + <p class="control" lang="ja"> 15.54 + <span>サンプル文サンプル<br />文<span class="target">¢</span>サンプル文</span> 15.55 + </p> 15.56 + <hr /> 15.57 + <!-- postfixes DEGREE SIGN --> 15.58 + <p class="control" lang="ja"> 15.59 + <span>サンプル文サンプル<br />文<span class="target">°</span>サンプル文</span> 15.60 + </p> 15.61 + <p class="control" lang="ja"> 15.62 + <span>サンプル文サンプル<br />文<span class="target">°</span>サンプル文</span> 15.63 + </p> 15.64 + <hr /> 15.65 + <!-- postfixes PER MILLE SIGN --> 15.66 + <p class="control" lang="ja"> 15.67 + <span>サンプル文サンプル<br />文<span class="target">‰</span>サンプル文</span> 15.68 + </p> 15.69 + <p class="control" lang="ja"> 15.70 + <span>サンプル文サンプル<br />文<span class="target">‰</span>サンプル文</span> 15.71 + </p> 15.72 + <hr /> 15.73 + <!-- postfixes PRIME --> 15.74 + <p class="control" lang="ja"> 15.75 + <span>サンプル文サンプル<br />文<span class="target">′</span>サンプル文</span> 15.76 + </p> 15.77 + <p class="control" lang="ja"> 15.78 + <span>サンプル文サンプル<br />文<span class="target">′</span>サンプル文</span> 15.79 + </p> 15.80 + <hr /> 15.81 + <!-- postfixes DOUBLE PRIME --> 15.82 + <p class="control" lang="ja"> 15.83 + <span>サンプル文サンプル<br />文<span class="target">″</span>サンプル文</span> 15.84 + </p> 15.85 + <p class="control" lang="ja"> 15.86 + <span>サンプル文サンプル<br />文<span class="target">″</span>サンプル文</span> 15.87 + </p> 15.88 + <hr /> 15.89 + <!-- postfixes DEGREE CELSIUS --> 15.90 + <p class="control" lang="ja"> 15.91 + <span>サンプル文サンプル<br />文<span class="target">℃</span>サンプル文</span> 15.92 + </p> 15.93 + <p class="control" lang="ja"> 15.94 + <span>サンプル文サンプル<br />文<span class="target">℃</span>サンプル文</span> 15.95 + </p> 15.96 + <hr /> 15.97 + <!-- postfixes FULLWIDTH PERCENT SIGN --> 15.98 + <p class="control" lang="ja"> 15.99 + <span>サンプル文サンプル<br />文<span class="target">%</span>サンプル文</span> 15.100 + </p> 15.101 + <p class="control" lang="ja"> 15.102 + <span>サンプル文サンプル<br />文<span class="target">%</span>サンプル文</span> 15.103 + </p> 15.104 + <hr /> 15.105 + <!-- postfixes FULLWIDTH CENT SIGN --> 15.106 + <p class="control" lang="ja"> 15.107 + <span>サンプル文サンプル<br />文<span class="target">¢</span>サンプル文</span> 15.108 + </p> 15.109 + <p class="control" lang="ja"> 15.110 + <span>サンプル文サンプル<br />文<span class="target">¢</span>サンプル文</span> 15.111 + </p> 15.112 + </body> 15.113 +</html> 15.114 \ No newline at end of file
16.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 16.2 +++ b/contributors/east-tokyo/submitted/css3-text/reftest/line-break-strict-018-ref.xht Tue Feb 12 00:42:41 2013 +0900 16.3 @@ -0,0 +1,102 @@ 16.4 +<?xml version="1.0" encoding="UTF-8"?> 16.5 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 16.6 +<html xmlns="http://www.w3.org/1999/xhtml"> 16.7 + <head> 16.8 + <title>CSS Reftest Reference</title> 16.9 + <!-- reftest for line-break-strict-018.xht --> 16.10 + <link rel="author" title="Taka Oshiyama" href="mailto:takaoshiyama@gmail.com" /> 16.11 + <meta http-equiv="content-language" content="en, ja" /> 16.12 + <style type="text/css"> 16.13 + @font-face 16.14 + { 16.15 + font-family: "IPAMincho"; 16.16 + src: url("support/ipam.ttf"); /* Filesize: 8046712 bytes; version: 00303 */ 16.17 + } 16.18 + @font-face 16.19 + { 16.20 + font-family: "IPAGothic"; 16.21 + src: url("support/ipag.ttf"); /* Filesize: 6235344 bytes; version: 00303 */ 16.22 + } 16.23 + .test span { 16.24 + line-break: strict; 16.25 + } 16.26 + p.control { 16.27 + border: 1px solid gray; 16.28 + color: blue; 16.29 + font-family: "IPAMincho", "IPAGothic", "IPA明朝", "IPAゴシック"; 16.30 + width: 10em; 16.31 + } 16.32 + span.target { 16.33 + background-color: aqua; 16.34 + } 16.35 + </style> 16.36 + </head> 16.37 + <body lang="en"> 16.38 + <p> 16.39 + Test passes if the highlighted characters in each pair of rectangles are at the exact same horizontal position. 16.40 + </p> 16.41 + <!-- prefixes DOLLAR SIGN --> 16.42 + <p class="control" lang="ja"> 16.43 + <span>サンプル文サンプル<br />文<span class="target">$</span>サンプル文</span> 16.44 + </p> 16.45 + <p class="control" lang="ja"> 16.46 + <span>サンプル文サンプル<br />文<span class="target">$</span>サンプル文</span> 16.47 + </p> 16.48 + <hr /> 16.49 + <!-- prefixes POUND SIGN --> 16.50 + <p class="control" lang="ja"> 16.51 + <span>サンプル文サンプル<br />文<span class="target">£</span>サンプル文</span> 16.52 + </p> 16.53 + <p class="control" lang="ja"> 16.54 + <span>サンプル文サンプル<br />文<span class="target">£</span>サンプル文</span> 16.55 + </p> 16.56 + <hr /> 16.57 + <!-- prefixes YEN SIGN --> 16.58 + <p class="control" lang="ja"> 16.59 + <span>サンプル文サンプル<br />文<span class="target">¥</span>サンプル文</span> 16.60 + </p> 16.61 + <p class="control" lang="ja"> 16.62 + <span>サンプル文サンプル<br />文<span class="target">¥</span>サンプル文</span> 16.63 + </p> 16.64 + <hr /> 16.65 + <!-- prefixes EURO SIGN --> 16.66 + <p class="control" lang="ja"> 16.67 + <span>サンプル文サンプル<br />文<span class="target">€</span>サンプル文</span> 16.68 + </p> 16.69 + <p class="control" lang="ja"> 16.70 + <span>サンプル文サンプル<br />文<span class="target">€</span>サンプル文</span> 16.71 + </p> 16.72 + <hr /> 16.73 + <!-- prefixes NUMERO SIGN --> 16.74 + <p class="control" lang="ja"> 16.75 + <span>サンプル文サンプル<br />文<span class="target">№</span>サンプル文</span> 16.76 + </p> 16.77 + <p class="control" lang="ja"> 16.78 + <span>サンプル文サンプル<br />文<span class="target">№</span>サンプル文</span> 16.79 + </p> 16.80 + <hr /> 16.81 + <!-- prefixes FULLWIDTH DOLLAR SIGN --> 16.82 + <p class="control" lang="ja"> 16.83 + <span>サンプル文サンプル<br />文<span class="target">$</span>サンプル文</span> 16.84 + </p> 16.85 + <p class="control" lang="ja"> 16.86 + <span>サンプル文サンプル<br />文<span class="target">$</span>サンプル文</span> 16.87 + </p> 16.88 + <hr /> 16.89 + <!-- prefixes FULLWIDTH POUND SIGN --> 16.90 + <p class="control" lang="ja"> 16.91 + <span>サンプル文サンプル<br />文<span class="target">£</span>サンプル文</span> 16.92 + </p> 16.93 + <p class="control" lang="ja"> 16.94 + <span>サンプル文サンプル<br />文<span class="target">£</span>サンプル文</span> 16.95 + </p> 16.96 + <hr /> 16.97 + <!-- prefixes FULLWIDTH YEN SIGN --> 16.98 + <p class="control" lang="ja"> 16.99 + <span>サンプル文サンプル<br />文<span class="target">¥</span>サンプル文</span> 16.100 + </p> 16.101 + <p class="control" lang="ja"> 16.102 + <span>サンプル文サンプル<br />文<span class="target">¥</span>サンプル文</span> 16.103 + </p> 16.104 + </body> 16.105 +</html> 16.106 \ No newline at end of file