diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-03-28 12:13:27 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-03-28 12:13:27 -0700 |
commit | 6f4018f8d36ce641a5a67a6dff14de99e662a08f (patch) | |
tree | b663762703a2504ce519820d4513c9032c7f92f7 | |
parent | d744b83b61bc635419339b73b687b9280ee757fc (diff) | |
download | pandoc-6f4018f8d36ce641a5a67a6dff14de99e662a08f.tar.gz |
Fixed lhs writer tests (overflow-x, not x-overflow).
-rw-r--r-- | tests/lhs-test.html | 2 | ||||
-rw-r--r-- | tests/lhs-test.html+lhs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/lhs-test.html b/tests/lhs-test.html index cc53a3845..1f2a7736b 100644 --- a/tests/lhs-test.html +++ b/tests/lhs-test.html @@ -8,7 +8,7 @@ B <title></title> <style type="text/css">code{white-space: pre;}</style> <style type="text/css"> -div.sourceCode { x-overflow: auto; } +div.sourceCode { overflow-x: auto; } table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode { margin: 0; padding: 0; vertical-align: baseline; border: none; } table.sourceCode { width: 100%; line-height: 100%; } diff --git a/tests/lhs-test.html+lhs b/tests/lhs-test.html+lhs index 8fbb16e10..492d9c718 100644 --- a/tests/lhs-test.html+lhs +++ b/tests/lhs-test.html+lhs @@ -7,7 +7,7 @@ <title></title> <style type="text/css">code{white-space: pre;}</style> <style type="text/css"> -div.sourceCode { x-overflow: auto; } +div.sourceCode { overflow-x: auto; } table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode { margin: 0; padding: 0; vertical-align: baseline; border: none; } table.sourceCode { width: 100%; line-height: 100%; } |