[Webkit-unassigned] [Bug 140239] Web Inspector: Editing Inline Styles Not Working

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jan 7 21:18:19 PST 2015


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

--- Comment #3 from Joseph Pecoraro <joepeck at webkit.org> ---
Looks like this was due to an InspectorStyleSheet change:

-        RefPtr<Inspector::InspectorValue> ordinalValue = value->get("ordinal");
-        if (!ordinalValue || !ordinalValue->asInteger(m_ordinal))
+        int ordinalValue;
+        if (!value->getInteger("ordinal", ordinalValue))

m_ordinal used to be getting set, but now it isn't, causing it to have a garbage value.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20150108/3ecb5a93/attachment-0002.html>


More information about the webkit-unassigned mailing list