mosx1 / dompdf

Automatically exported from code.google.com/p/dompdf
0 stars 0 forks source link

typo in html.css #468

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
there appears to be a typo in html.css in that password & radio button are 
swapped. see patch below.

What is the expected output? What do you see instead?

What version of dompdf are you using? What version of PHP? On what
operating system? trunk

Please provide the HTML source code you want to convert, or any additional 
information.
Patch:
# This patch file was generated by NetBeans IDE
# It uses platform neutral UTF-8 encoding and \n newlines.
--- Base (BASE)
+++ Locally Modified (Based On LOCAL)
@@ -343,11 +343,11 @@
 }

 input[type=password] {
-  -dompdf-appearance: radio-button;
+  -dompdf-appearance: password;
 }

 input[type=radio] {
-  -dompdf-appearance: password;
\ No newline at end of file
+  -dompdf-appearance: radio-button;
\ No newline at end of file
 }

 input[type=checkbox] {

Original issue reported on code.google.com by johngbel...@gmail.com on 14 Apr 2012 at 10:19

GoogleCodeExporter commented 8 years ago
thanks for the notice, addressed in r490

Original comment by eclecticgeek on 16 Apr 2012 at 4:46

GoogleCodeExporter commented 8 years ago

Original comment by eclecticgeek on 30 May 2013 at 5:16