| Differences between
and this patch
- a/WebCore/ChangeLog +9 lines
Lines 2-7 a/WebCore/ChangeLog_sec1
2
2
3
        Reviewed by NOBODY (OOPS!).
3
        Reviewed by NOBODY (OOPS!).
4
4
5
        Web Inspector shouldn't show a white color box for "-webkit-line-break: after-white-space"
6
        https://bugs.webkit.org/show_bug.cgi?id=33478
7
8
        * inspector/front-end/StylesSidebarPane.js:
9
10
2010-02-11  Joseph Pecoraro  <joepeck@webkit.org>
11
12
        Reviewed by NOBODY (OOPS!).
13
5
        Web Inspector: Editing Styles Cannot Tab Backwards from a New Style Item
14
        Web Inspector: Editing Styles Cannot Tab Backwards from a New Style Item
6
        https://bugs.webkit.org/show_bug.cgi?id=34872
15
        https://bugs.webkit.org/show_bug.cgi?id=34872
7
16
- a/WebCore/inspector/front-end/StylesSidebarPane.js -1 / +1 lines
Lines 994-1000 WebInspector.StylePropertyTreeElement.prototype = { a/WebCore/inspector/front-end/StylesSidebarPane.js_sec1
994
                return container;
994
                return container;
995
            }
995
            }
996
996
997
            var colorRegex = /((?:rgb|hsl)a?\([^)]+\)|#[0-9a-fA-F]{6}|#[0-9a-fA-F]{3}|\b\w+\b)/g;
997
            var colorRegex = /((?:rgb|hsl)a?\([^)]+\)|#[0-9a-fA-F]{6}|#[0-9a-fA-F]{3}|\b\w+\b(?!-))/g;
998
            var colorProcessor = processValue.bind(window, colorRegex, processColor, null);
998
            var colorProcessor = processValue.bind(window, colorRegex, processColor, null);
999
999
1000
            valueElement.appendChild(processValue(/url\(([^)]+)\)/g, linkifyURL, colorProcessor, value));
1000
            valueElement.appendChild(processValue(/url\(([^)]+)\)/g, linkifyURL, colorProcessor, value));

Return to Bug 33478