[Webkit-unassigned] [Bug 40204] Need to recognize "; " as separator for arguments of viewport tag

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jan 10 11:51:57 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=40204


mike.zraly at nokia.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mike.zraly at nokia.com




--- Comment #5 from mike.zraly at nokia.com  2011-01-10 11:51:56 PST ---
The patch is not quite complete.  In addition to modifying isSeparator() it should also modify two lines in the function that calls isSeparator(), Document::processArguments(), to replace

if (buffer[i] == ',' || i >= length)

with

if (buffer[i] == ',' || buffer[i] == ';' || i >= length)

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list