Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/word-break/word-break-keep-all-009.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="utf-8">
<title>word-break: keep-all, ID and CJ</title>
<meta name="assert" content="word-break: keep-all means breaking is forbidden within 'words'. In this style, sequences of CJK characters do not break.">
<link rel='match' href='reference/word-break-keep-all-ref-009.html'>
<link rel='author' title='Makoto Kato' href='mailto:m_kato@ga2.so-net.ne.jp'>
<style type='text/css'>
.test { word-break: keep-all; }
/* the CSS below is not part of the test */
.test, .ref { border: 1px solid orange; margin: 20px; padding: 10px; width: 390px; font: 36px/1 sans-serif; }
</style>
</head>
<body>
<div id='instructions'>Test passes if the two orange boxes are the same.</div>
<div class="test" lang="ja"><div id="testdiv"><span id="testspan">フォ フォ</span></div></div>
<div class="ref" lang="ja"><span>フォ<br/>フォ</span></div>
<script>
var sentenceWidth = document.getElementById('testspan').offsetWidth;
document.getElementById('testdiv').style.width = String(sentenceWidth - 5)+'px';
</script>
</body>
</html>