diff options
author | Simon Hausmann <simon.hausmann@nokia.com> | 2010-05-05 15:28:45 (GMT) |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2010-05-05 15:28:45 (GMT) |
commit | b017f89f844c09354b50a45fd49fcdcee4f72e43 (patch) | |
tree | 69385ca1f1a1791582ffc3614605db94a977cf5a | |
parent | ffa103af9620998f47c632f4118e789bf7f1cde7 (diff) | |
download | Qt-b017f89f844c09354b50a45fd49fcdcee4f72e43.zip Qt-b017f89f844c09354b50a45fd49fcdcee4f72e43.tar.gz Qt-b017f89f844c09354b50a45fd49fcdcee4f72e43.tar.bz2 |
Updated WebKit to 992e57ee469bd8c6a2afef6b15896a161ab8aeb3
Fixes integrated since the last import:
|| <https://webkit.org/b/38339> || [Qt] Enable JIT for QtWebKit on Symbian ||
|| <https://webkit.org/b/38116> || Media queries empty values ||
|| <https://webkit.org/b/38125> || View modes names in CSSValueKeywords.in ||
Also disabled QtMultimedia support for HTML 5 Audio/Video elements and removed
WebGL support.
-rw-r--r-- | src/3rdparty/webkit/.tag | 2 | ||||
-rw-r--r-- | src/3rdparty/webkit/JavaScriptCore/ChangeLog | 12 | ||||
-rw-r--r-- | src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h | 3 | ||||
-rw-r--r-- | src/3rdparty/webkit/VERSION | 2 | ||||
-rw-r--r-- | src/3rdparty/webkit/WebCore/ChangeLog | 56 | ||||
-rw-r--r-- | src/3rdparty/webkit/WebCore/WebCore.pro | 13 | ||||
-rw-r--r-- | src/3rdparty/webkit/WebCore/css/CSSValueKeywords.in | 5 | ||||
-rw-r--r-- | src/3rdparty/webkit/WebCore/css/MediaQueryEvaluator.cpp | 3 | ||||
-rw-r--r-- | src/3rdparty/webkit/WebCore/css/MediaQueryExp.cpp | 2 | ||||
-rw-r--r-- | src/3rdparty/webkit/WebCore/css/MediaQueryExp.h | 3 | ||||
-rw-r--r-- | src/3rdparty/webkit/WebCore/generated/CSSValueKeywords.c | 843 | ||||
-rw-r--r-- | src/3rdparty/webkit/WebCore/generated/CSSValueKeywords.h | 325 | ||||
-rw-r--r-- | src/3rdparty/webkit/WebCore/platform/qt/RenderThemeQt.cpp | 2 | ||||
-rw-r--r-- | src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.cpp | 1 | ||||
-rw-r--r-- | src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.h | 1 |
15 files changed, 675 insertions, 598 deletions
diff --git a/src/3rdparty/webkit/.tag b/src/3rdparty/webkit/.tag index b6feeb1..d0dcced 100644 --- a/src/3rdparty/webkit/.tag +++ b/src/3rdparty/webkit/.tag @@ -1 +1 @@ -992e57ee469bd8c6a2afef6b15896a161ab8aeb3 +e4b73bb0b173f21db8f0de3dae885a8a71282996 diff --git a/src/3rdparty/webkit/JavaScriptCore/ChangeLog b/src/3rdparty/webkit/JavaScriptCore/ChangeLog index eb22ea0..1439ae0 100644 --- a/src/3rdparty/webkit/JavaScriptCore/ChangeLog +++ b/src/3rdparty/webkit/JavaScriptCore/ChangeLog @@ -1,3 +1,15 @@ +2010-05-02 Laszlo Gombos <laszlo.1.gombos@nokia.com> + + Reviewed by Eric Seidel. + + [Qt] Enable JIT for QtWebKit on Symbian + https://bugs.webkit.org/show_bug.cgi?id=38339 + + JIT on Symbian has been stable for quite some time, it + is time to turn it on by default. + + * wtf/Platform.h: + 2010-04-28 Simon Hausmann <simon.hausmann@nokia.com>, Kent Hansen <kent.hansen@nokia.com> Reviewed by Darin Adler. diff --git a/src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h b/src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h index 96ed9bd..c582905 100644 --- a/src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h +++ b/src/3rdparty/webkit/JavaScriptCore/wtf/Platform.h @@ -939,6 +939,8 @@ on MinGW. See https://bugs.webkit.org/show_bug.cgi?id=29268 */ #define ENABLE_JIT 1 #elif CPU(ARM_TRADITIONAL) && OS(LINUX) #define ENABLE_JIT 1 +#elif CPU(ARM_TRADITIONAL) && OS(SYMBIAN) && COMPILER(RVCT) + #define ENABLE_JIT 1 #endif #endif /* PLATFORM(QT) */ @@ -1008,6 +1010,7 @@ on MinGW. See https://bugs.webkit.org/show_bug.cgi?id=29268 */ || (CPU(X86) && OS(LINUX) && GCC_VERSION >= 40100) \ || (CPU(X86_64) && OS(LINUX) && GCC_VERSION >= 40100) \ || (CPU(ARM_TRADITIONAL) && OS(LINUX)) \ + || (CPU(ARM_TRADITIONAL) && OS(SYMBIAN) && COMPILER(RVCT)) \ || (CPU(MIPS) && OS(LINUX)) #define ENABLE_YARR 1 #define ENABLE_YARR_JIT 1 diff --git a/src/3rdparty/webkit/VERSION b/src/3rdparty/webkit/VERSION index c3d6314..d4036b4 100644 --- a/src/3rdparty/webkit/VERSION +++ b/src/3rdparty/webkit/VERSION @@ -4,4 +4,4 @@ This is a snapshot of the Qt port of WebKit from and has the sha1 checksum - 3f0f51f4c87e65bfe04165c6af4c00934b0ca1e2 + 992e57ee469bd8c6a2afef6b15896a161ab8aeb3 diff --git a/src/3rdparty/webkit/WebCore/ChangeLog b/src/3rdparty/webkit/WebCore/ChangeLog index 05fc2af..37fa8e4 100644 --- a/src/3rdparty/webkit/WebCore/ChangeLog +++ b/src/3rdparty/webkit/WebCore/ChangeLog @@ -1,3 +1,59 @@ +2010-05-03 Tor Arne Vestbø <tor.arne.vestbo@nokia.com> + + Reviewed by Simon Hausmann. + + [Qt] Fix rendering of <button> elements on Mac OS X + + The <button> element has ButtonPart appearance, not PushButton part, + so we have to include ButtonPart when we decide if we should draw the + button as raised on Mac OS X. + + https://bugs.webkit.org/show_bug.cgi?id=38458 + + * platform/qt/RenderThemeQt.cpp: + (WebCore::RenderThemeQt::initializeCommonQStyleOptions): + +2010-04-26 Luiz Agostini <luiz.agostini@openbossa.org> + + Reviewed by Kenneth Rohde Christiansen. + + View modes names in CSSValueKeywords.in + https://bugs.webkit.org/show_bug.cgi?id=38125 + + View mode names has changed in previous patch but CSSValueKeywords.in file was + not updated. + + * css/CSSValueKeywords.in: + +2010-04-28 Luiz Agostini <luiz.agostini@openbossa.org> + + Reviewed by Simon Fraser. + + Media queries empty values + https://bugs.webkit.org/show_bug.cgi?id=38116 + + Adding isValid() method to MediaQueryExp to make it possible to differentiate + between queries with empty values and queries with invalid values. + + Test: fast/media/media-query-invalid-value.html + + * css/MediaQueryEvaluator.cpp: + (WebCore::MediaQueryEvaluator::eval): + * css/MediaQueryExp.cpp: + (WebCore::MediaQueryExp::MediaQueryExp): + * css/MediaQueryExp.h: + (WebCore::MediaQueryExp::isValid): + +2010-05-05 Simon Hausmann <simon.hausmann@nokia.com> + + Reviewed by Tor Arne Vestbø. + + [Qt] Disable Qt Multimedia backend for HTML 5 Audio and Video elements + + Fall back to the Phonon backend until the release situation has been cleared up. + + * WebCore.pro: + 2010-05-03 Janne Koskinen <janne.p.koskinen@digia.com> Reviewed by Simon Hausmann. diff --git a/src/3rdparty/webkit/WebCore/WebCore.pro b/src/3rdparty/webkit/WebCore/WebCore.pro index 3d57562..11d3c8b 100644 --- a/src/3rdparty/webkit/WebCore/WebCore.pro +++ b/src/3rdparty/webkit/WebCore/WebCore.pro @@ -134,17 +134,12 @@ addJavaScriptCoreLib(../JavaScriptCore) # HTML5 Media Support -# We require phonon for versions of Qt < 4.7 -# We require QtMultimedia for versions of Qt >= 4.7 +# We require phonon. QtMultimedia support is disabled currently. !contains(DEFINES, ENABLE_VIDEO=.) { DEFINES -= ENABLE_VIDEO=1 DEFINES += ENABLE_VIDEO=0 - lessThan(QT_MINOR_VERSION, 7):contains(QT_CONFIG, phonon) { - DEFINES -= ENABLE_VIDEO=0 - DEFINES += ENABLE_VIDEO=1 - } - !lessThan(QT_MINOR_VERSION, 7):contains(QT_CONFIG, mediaservices) { + contains(QT_CONFIG, phonon) { DEFINES -= ENABLE_VIDEO=0 DEFINES += ENABLE_VIDEO=1 } @@ -2369,8 +2364,8 @@ contains(DEFINES, ENABLE_VIDEO=1) { rendering/RenderMedia.cpp \ bindings/js/JSAudioConstructor.cpp - # QtMultimedia since 4.7 - greaterThan(QT_MINOR_VERSION, 6) { + # QtMultimedia disabled currently + false:greaterThan(QT_MINOR_VERSION, 6) { HEADERS += platform/graphics/qt/MediaPlayerPrivateQt.h SOURCES += platform/graphics/qt/MediaPlayerPrivateQt.cpp diff --git a/src/3rdparty/webkit/WebCore/css/CSSValueKeywords.in b/src/3rdparty/webkit/WebCore/css/CSSValueKeywords.in index 09d969a..1028dcf 100644 --- a/src/3rdparty/webkit/WebCore/css/CSSValueKeywords.in +++ b/src/3rdparty/webkit/WebCore/css/CSSValueKeywords.in @@ -711,7 +711,8 @@ geometricPrecision sRGB # (-webkit-view-mode:) media feature: -mini floating -application fullscreen +maximized +minimized +windowed diff --git a/src/3rdparty/webkit/WebCore/css/MediaQueryEvaluator.cpp b/src/3rdparty/webkit/WebCore/css/MediaQueryEvaluator.cpp index ded40b5..20c7bb9 100644 --- a/src/3rdparty/webkit/WebCore/css/MediaQueryEvaluator.cpp +++ b/src/3rdparty/webkit/WebCore/css/MediaQueryEvaluator.cpp @@ -533,6 +533,9 @@ bool MediaQueryEvaluator::eval(const MediaQueryExp* expr) const if (!m_frame || !m_style) return m_expResult; + if (!expr->isValid()) + return false; + if (!gFunctionMap) createFunctionMap(); diff --git a/src/3rdparty/webkit/WebCore/css/MediaQueryExp.cpp b/src/3rdparty/webkit/WebCore/css/MediaQueryExp.cpp index 7ba6d84..53c0b73 100644 --- a/src/3rdparty/webkit/WebCore/css/MediaQueryExp.cpp +++ b/src/3rdparty/webkit/WebCore/css/MediaQueryExp.cpp @@ -37,6 +37,7 @@ namespace WebCore { MediaQueryExp::MediaQueryExp(const AtomicString& mediaFeature, CSSParserValueList* valueList) : m_mediaFeature(mediaFeature) , m_value(0) + , m_isValid(true) { if (valueList) { if (valueList->size() == 1) { @@ -73,6 +74,7 @@ MediaQueryExp::MediaQueryExp(const AtomicString& mediaFeature, CSSParserValueLis if (isValid) m_value = list.release(); } + m_isValid = m_value; } } diff --git a/src/3rdparty/webkit/WebCore/css/MediaQueryExp.h b/src/3rdparty/webkit/WebCore/css/MediaQueryExp.h index fd55cf6..9272402 100644 --- a/src/3rdparty/webkit/WebCore/css/MediaQueryExp.h +++ b/src/3rdparty/webkit/WebCore/css/MediaQueryExp.h @@ -52,6 +52,8 @@ public: || (other.m_value && m_value && other.m_value->cssText() == m_value->cssText())); } + bool isValid() const { return m_isValid; } + bool isViewportDependent() const { return m_mediaFeature == MediaFeatureNames::widthMediaFeature || m_mediaFeature == MediaFeatureNames::heightMediaFeature || m_mediaFeature == MediaFeatureNames::min_widthMediaFeature || @@ -65,6 +67,7 @@ public: private: AtomicString m_mediaFeature; RefPtr<CSSValue> m_value; + bool m_isValid; }; } // namespace diff --git a/src/3rdparty/webkit/WebCore/generated/CSSValueKeywords.c b/src/3rdparty/webkit/WebCore/generated/CSSValueKeywords.c index 6a2581e..b7bf3de 100644 --- a/src/3rdparty/webkit/WebCore/generated/CSSValueKeywords.c +++ b/src/3rdparty/webkit/WebCore/generated/CSSValueKeywords.c @@ -203,7 +203,7 @@ findValue (register const char *str, register unsigned int len) { enum { - TOTAL_KEYWORDS = 613, + TOTAL_KEYWORDS = 614, MIN_WORD_LENGTH = 2, MAX_WORD_LENGTH = 35, MIN_HASH_VALUE = 0, @@ -226,7 +226,7 @@ findValue (register const char *str, register unsigned int len) {"end", CSSValueEnd}, #line 46 "CSSValueKeywords.gperf" {"700", CSSValue700}, -#line 621 "CSSValueKeywords.gperf" +#line 622 "CSSValueKeywords.gperf" {"lr", CSSValueLr}, #line 45 "CSSValueKeywords.gperf" {"600", CSSValue600}, @@ -236,17 +236,17 @@ findValue (register const char *str, register unsigned int len) {"400", CSSValue400}, #line 41 "CSSValueKeywords.gperf" {"200", CSSValue200}, -#line 623 "CSSValueKeywords.gperf" +#line 624 "CSSValueKeywords.gperf" {"tb", CSSValueTb}, #line 15 "CSSValueKeywords.gperf" {"inset", CSSValueInset}, #line 146 "CSSValueKeywords.gperf" {"sub", CSSValueSub}, -#line 520 "CSSValueKeywords.gperf" +#line 521 "CSSValueKeywords.gperf" {"indigo", CSSValueIndigo}, -#line 559 "CSSValueKeywords.gperf" +#line 560 "CSSValueKeywords.gperf" {"oldlace", CSSValueOldlace}, -#line 571 "CSSValueKeywords.gperf" +#line 572 "CSSValueKeywords.gperf" {"plum", CSSValuePlum}, #line 71 "CSSValueKeywords.gperf" {"cursive", CSSValueCursive}, @@ -264,7 +264,7 @@ findValue (register const char *str, register unsigned int len) {"armenian", CSSValueArmenian}, #line 299 "CSSValueKeywords.gperf" {"above", CSSValueAbove}, -#line 590 "CSSValueKeywords.gperf" +#line 591 "CSSValueKeywords.gperf" {"tomato", CSSValueTomato}, #line 36 "CSSValueKeywords.gperf" {"normal", CSSValueNormal}, @@ -272,7 +272,7 @@ findValue (register const char *str, register unsigned int len) {"cross", CSSValueCross}, #line 352 "CSSValueKeywords.gperf" {"multiple", CSSValueMultiple}, -#line 480 "CSSValueKeywords.gperf" +#line 481 "CSSValueKeywords.gperf" {"coral", CSSValueCoral}, #line 371 "CSSValueKeywords.gperf" {"ellipsis", CSSValueEllipsis}, @@ -294,7 +294,7 @@ findValue (register const char *str, register unsigned int len) {"contain", CSSValueContain}, #line 437 "CSSValueKeywords.gperf" {"logical", CSSValueLogical}, -#line 616 "CSSValueKeywords.gperf" +#line 617 "CSSValueKeywords.gperf" {"no-change", CSSValueNoChange}, #line 308 "CSSValueKeywords.gperf" {"crop", CSSValueCrop}, @@ -302,17 +302,17 @@ findValue (register const char *str, register unsigned int len) {"blue", CSSValueBlue}, #line 444 "CSSValueKeywords.gperf" {"ease", CSSValueEase}, -#line 588 "CSSValueKeywords.gperf" +#line 589 "CSSValueKeywords.gperf" {"tan", CSSValueTan}, #line 462 "CSSValueKeywords.gperf" {"srgb", CSSValueSrgb}, #line 53 "CSSValueKeywords.gperf" {"large", CSSValueLarge}, -#line 479 "CSSValueKeywords.gperf" +#line 480 "CSSValueKeywords.gperf" {"chocolate", CSSValueChocolate}, #line 258 "CSSValueKeywords.gperf" {"auto", CSSValueAuto}, -#line 618 "CSSValueKeywords.gperf" +#line 619 "CSSValueKeywords.gperf" {"lr-tb", CSSValueLrTb}, #line 298 "CSSValueKeywords.gperf" {"collapse", CSSValueCollapse}, @@ -326,9 +326,9 @@ findValue (register const char *str, register unsigned int len) {"orange", CSSValueOrange}, #line 18 "CSSValueKeywords.gperf" {"outset", CSSValueOutset}, -#line 576 "CSSValueKeywords.gperf" +#line 577 "CSSValueKeywords.gperf" {"salmon", CSSValueSalmon}, -#line 544 "CSSValueKeywords.gperf" +#line 545 "CSSValueKeywords.gperf" {"magenta", CSSValueMagenta}, #line 419 "CSSValueKeywords.gperf" {"caret", CSSValueCaret}, @@ -338,9 +338,9 @@ findValue (register const char *str, register unsigned int len) {"table", CSSValueTable}, #line 51 "CSSValueKeywords.gperf" {"small", CSSValueSmall}, -#line 613 "CSSValueKeywords.gperf" +#line 614 "CSSValueKeywords.gperf" {"hanging", CSSValueHanging}, -#line 474 "CSSValueKeywords.gperf" +#line 475 "CSSValueKeywords.gperf" {"blueviolet", CSSValueBlueviolet}, #line 243 "CSSValueKeywords.gperf" {"compact", CSSValueCompact}, @@ -368,10 +368,8 @@ findValue (register const char *str, register unsigned int len) {"top", CSSValueTop}, #line 310 "CSSValueKeywords.gperf" {"embed", CSSValueEmbed}, -#line 514 "CSSValueKeywords.gperf" +#line 515 "CSSValueKeywords.gperf" {"gold", CSSValueGold}, -#line 463 "CSSValueKeywords.gperf" - {"mini", CSSValueMini}, #line 439 "CSSValueKeywords.gperf" {"lines", CSSValueLines}, #line 351 "CSSValueKeywords.gperf" @@ -386,11 +384,11 @@ findValue (register const char *str, register unsigned int len) {"thin", CSSValueThin}, #line 21 "CSSValueKeywords.gperf" {"solid", CSSValueSolid}, -#line 543 "CSSValueKeywords.gperf" +#line 544 "CSSValueKeywords.gperf" {"linen", CSSValueLinen}, #line 319 "CSSValueKeywords.gperf" {"local", CSSValueLocal}, -#line 589 "CSSValueKeywords.gperf" +#line 590 "CSSValueKeywords.gperf" {"thistle", CSSValueThistle}, #line 392 "CSSValueKeywords.gperf" {"listitem", CSSValueListitem}, @@ -402,31 +400,31 @@ findValue (register const char *str, register unsigned int len) {"tibetan", CSSValueTibetan}, #line 105 "CSSValueKeywords.gperf" {"highlight", CSSValueHighlight}, -#line 484 "CSSValueKeywords.gperf" +#line 485 "CSSValueKeywords.gperf" {"cyan", CSSValueCyan}, -#line 483 "CSSValueKeywords.gperf" +#line 484 "CSSValueKeywords.gperf" {"crimson", CSSValueCrimson}, #line 117 "CSSValueKeywords.gperf" {"threedhighlight", CSSValueThreedhighlight}, -#line 592 "CSSValueKeywords.gperf" +#line 593 "CSSValueKeywords.gperf" {"violet", CSSValueViolet}, #line 164 "CSSValueKeywords.gperf" {"circle", CSSValueCircle}, #line 370 "CSSValueKeywords.gperf" {"clip", CSSValueClip}, -#line 535 "CSSValueKeywords.gperf" +#line 536 "CSSValueKeywords.gperf" {"lightsalmon", CSSValueLightsalmon}, -#line 557 "CSSValueKeywords.gperf" +#line 558 "CSSValueKeywords.gperf" {"moccasin", CSSValueMoccasin}, #line 206 "CSSValueKeywords.gperf" {"ethiopic", CSSValueEthiopic}, -#line 603 "CSSValueKeywords.gperf" +#line 604 "CSSValueKeywords.gperf" {"butt", CSSValueButt}, #line 356 "CSSValueKeywords.gperf" {"up", CSSValueUp}, #line 185 "CSSValueKeywords.gperf" {"urdu", CSSValueUrdu}, -#line 622 "CSSValueKeywords.gperf" +#line 623 "CSSValueKeywords.gperf" {"rl", CSSValueRl}, #line 312 "CSSValueKeywords.gperf" {"hand", CSSValueHand}, @@ -434,7 +432,7 @@ findValue (register const char *str, register unsigned int len) {"aqua", CSSValueAqua}, #line 211 "CSSValueKeywords.gperf" {"hangul", CSSValueHangul}, -#line 470 "CSSValueKeywords.gperf" +#line 471 "CSSValueKeywords.gperf" {"azure", CSSValueAzure}, #line 386 "CSSValueKeywords.gperf" {"button", CSSValueButton}, @@ -450,7 +448,7 @@ findValue (register const char *str, register unsigned int len) {"slow", CSSValueSlow}, #line 144 "CSSValueKeywords.gperf" {"baseline", CSSValueBaseline}, -#line 585 "CSSValueKeywords.gperf" +#line 586 "CSSValueKeywords.gperf" {"snow", CSSValueSnow}, #line 338 "CSSValueKeywords.gperf" {"static", CSSValueStatic}, @@ -460,7 +458,7 @@ findValue (register const char *str, register unsigned int len) {"outside", CSSValueOutside}, #line 306 "CSSValueKeywords.gperf" {"both", CSSValueBoth}, -#line 591 "CSSValueKeywords.gperf" +#line 592 "CSSValueKeywords.gperf" {"turquoise", CSSValueTurquoise}, #line 37 "CSSValueKeywords.gperf" {"bold", CSSValueBold}, @@ -470,11 +468,11 @@ findValue (register const char *str, register unsigned int len) {"inactivecaption", CSSValueInactivecaption}, #line 151 "CSSValueKeywords.gperf" {"bottom", CSSValueBottom}, -#line 612 "CSSValueKeywords.gperf" +#line 613 "CSSValueKeywords.gperf" {"alphabetic", CSSValueAlphabetic}, -#line 562 "CSSValueKeywords.gperf" +#line 563 "CSSValueKeywords.gperf" {"orchid", CSSValueOrchid}, -#line 620 "CSSValueKeywords.gperf" +#line 621 "CSSValueKeywords.gperf" {"tb-rl", CSSValueTbRl}, #line 32 "CSSValueKeywords.gperf" {"italic", CSSValueItalic}, @@ -486,7 +484,7 @@ findValue (register const char *str, register unsigned int len) {"oblique", CSSValueOblique}, #line 438 "CSSValueKeywords.gperf" {"visual", CSSValueVisual}, -#line 614 "CSSValueKeywords.gperf" +#line 615 "CSSValueKeywords.gperf" {"mathematical", CSSValueMathematical}, #line 22 "CSSValueKeywords.gperf" {"double", CSSValueDouble}, @@ -506,7 +504,7 @@ findValue (register const char *str, register unsigned int len) {"running", CSSValueRunning}, #line 279 "CSSValueKeywords.gperf" {"w-resize", CSSValueWResize}, -#line 513 "CSSValueKeywords.gperf" +#line 514 "CSSValueKeywords.gperf" {"ghostwhite", CSSValueGhostwhite}, #line 163 "CSSValueKeywords.gperf" {"disc", CSSValueDisc}, @@ -516,7 +514,7 @@ findValue (register const char *str, register unsigned int len) {"padding", CSSValuePadding}, #line 200 "CSSValueKeywords.gperf" {"amharic", CSSValueAmharic}, -#line 581 "CSSValueKeywords.gperf" +#line 582 "CSSValueKeywords.gperf" {"skyblue", CSSValueSkyblue}, #line 100 "CSSValueKeywords.gperf" {"buttonhighlight", CSSValueButtonhighlight}, @@ -524,8 +522,6 @@ findValue (register const char *str, register unsigned int len) {"landscape", CSSValueLandscape}, #line 246 "CSSValueKeywords.gperf" {"inline-table", CSSValueInlineTable}, -#line 465 "CSSValueKeywords.gperf" - {"application", CSSValueApplication}, #line 259 "CSSValueKeywords.gperf" {"crosshair", CSSValueCrosshair}, #line 267 "CSSValueKeywords.gperf" @@ -546,13 +542,13 @@ findValue (register const char *str, register unsigned int len) {"portrait", CSSValuePortrait}, #line 130 "CSSValueKeywords.gperf" {"no-repeat", CSSValueNoRepeat}, -#line 582 "CSSValueKeywords.gperf" +#line 583 "CSSValueKeywords.gperf" {"slateblue", CSSValueSlateblue}, #line 294 "CSSValueKeywords.gperf" {"capitalize", CSSValueCapitalize}, -#line 619 "CSSValueKeywords.gperf" +#line 620 "CSSValueKeywords.gperf" {"rl-tb", CSSValueRlTb}, -#line 602 "CSSValueKeywords.gperf" +#line 603 "CSSValueKeywords.gperf" {"crispedges", CSSValueCrispedges}, #line 293 "CSSValueKeywords.gperf" {"rtl", CSSValueRtl}, @@ -568,11 +564,13 @@ findValue (register const char *str, register unsigned int len) {"small-caps", CSSValueSmallCaps}, #line 147 "CSSValueKeywords.gperf" {"super", CSSValueSuper}, -#line 477 "CSSValueKeywords.gperf" +#line 478 "CSSValueKeywords.gperf" {"cadetblue", CSSValueCadetblue}, -#line 596 "CSSValueKeywords.gperf" +#line 466 "CSSValueKeywords.gperf" + {"minimized", CSSValueMinimized}, +#line 597 "CSSValueKeywords.gperf" {"nonzero", CSSValueNonzero}, -#line 475 "CSSValueKeywords.gperf" +#line 476 "CSSValueKeywords.gperf" {"brown", CSSValueBrown}, #line 90 "CSSValueKeywords.gperf" {"white", CSSValueWhite}, @@ -606,29 +604,29 @@ findValue (register const char *str, register unsigned int len) {"linear", CSSValueLinear}, #line 171 "CSSValueKeywords.gperf" {"cambodian", CSSValueCambodian}, -#line 467 "CSSValueKeywords.gperf" +#line 468 "CSSValueKeywords.gperf" {"aliceblue", CSSValueAliceblue}, -#line 527 "CSSValueKeywords.gperf" +#line 528 "CSSValueKeywords.gperf" {"lightblue", CSSValueLightblue}, #line 314 "CSSValueKeywords.gperf" {"higher", CSSValueHigher}, #line 19 "CSSValueKeywords.gperf" {"dotted", CSSValueDotted}, -#line 564 "CSSValueKeywords.gperf" +#line 565 "CSSValueKeywords.gperf" {"palegreen", CSSValuePalegreen}, #line 141 "CSSValueKeywords.gperf" {"xor", CSSValueXor}, #line 154 "CSSValueKeywords.gperf" {"left", CSSValueLeft}, -#line 519 "CSSValueKeywords.gperf" +#line 520 "CSSValueKeywords.gperf" {"indianred", CSSValueIndianred}, #line 39 "CSSValueKeywords.gperf" {"lighter", CSSValueLighter}, -#line 586 "CSSValueKeywords.gperf" +#line 587 "CSSValueKeywords.gperf" {"springgreen", CSSValueSpringgreen}, #line 80 "CSSValueKeywords.gperf" {"green", CSSValueGreen}, -#line 482 "CSSValueKeywords.gperf" +#line 483 "CSSValueKeywords.gperf" {"cornsilk", CSSValueCornsilk}, #line 79 "CSSValueKeywords.gperf" {"gray", CSSValueGray}, @@ -636,27 +634,27 @@ findValue (register const char *str, register unsigned int len) {"round", CSSValueRound}, #line 181 "CSSValueKeywords.gperf" {"myanmar", CSSValueMyanmar}, -#line 554 "CSSValueKeywords.gperf" +#line 555 "CSSValueKeywords.gperf" {"midnightblue", CSSValueMidnightblue}, #line 366 "CSSValueKeywords.gperf" {"element", CSSValueElement}, -#line 555 "CSSValueKeywords.gperf" +#line 556 "CSSValueKeywords.gperf" {"mintcream", CSSValueMintcream}, #line 242 "CSSValueKeywords.gperf" {"run-in", CSSValueRunIn}, #line 449 "CSSValueKeywords.gperf" {"document", CSSValueDocument}, -#line 540 "CSSValueKeywords.gperf" +#line 541 "CSSValueKeywords.gperf" {"lightsteelblue", CSSValueLightsteelblue}, #line 264 "CSSValueKeywords.gperf" {"cell", CSSValueCell}, #line 179 "CSSValueKeywords.gperf" {"malayalam", CSSValueMalayalam}, -#line 532 "CSSValueKeywords.gperf" +#line 533 "CSSValueKeywords.gperf" {"lightgreen", CSSValueLightgreen}, #line 92 "CSSValueKeywords.gperf" {"transparent", CSSValueTransparent}, -#line 542 "CSSValueKeywords.gperf" +#line 543 "CSSValueKeywords.gperf" {"limegreen", CSSValueLimegreen}, #line 456 "CSSValueKeywords.gperf" {"stroke", CSSValueStroke}, @@ -664,7 +662,7 @@ findValue (register const char *str, register unsigned int len) {"intrinsic", CSSValueIntrinsic}, #line 454 "CSSValueKeywords.gperf" {"painted", CSSValuePainted}, -#line 536 "CSSValueKeywords.gperf" +#line 537 "CSSValueKeywords.gperf" {"lightseagreen", CSSValueLightseagreen}, #line 331 "CSSValueKeywords.gperf" {"pre", CSSValuePre}, @@ -676,7 +674,7 @@ findValue (register const char *str, register unsigned int len) {"gurmukhi", CSSValueGurmukhi}, #line 348 "CSSValueKeywords.gperf" {"vertical", CSSValueVertical}, -#line 528 "CSSValueKeywords.gperf" +#line 529 "CSSValueKeywords.gperf" {"lightcoral", CSSValueLightcoral}, #line 384 "CSSValueKeywords.gperf" {"push-button", CSSValuePushButton}, @@ -696,7 +694,7 @@ findValue (register const char *str, register unsigned int len) {"close-quote", CSSValueCloseQuote}, #line 183 "CSSValueKeywords.gperf" {"oriya", CSSValueOriya}, -#line 464 "CSSValueKeywords.gperf" +#line 463 "CSSValueKeywords.gperf" {"floating", CSSValueFloating}, #line 143 "CSSValueKeywords.gperf" {"plus-lighter", CSSValuePlusLighter}, @@ -714,15 +712,15 @@ findValue (register const char *str, register unsigned int len) {"source-in", CSSValueSourceIn}, #line 261 "CSSValueKeywords.gperf" {"pointer", CSSValuePointer}, -#line 472 "CSSValueKeywords.gperf" +#line 473 "CSSValueKeywords.gperf" {"bisque", CSSValueBisque}, -#line 598 "CSSValueKeywords.gperf" +#line 599 "CSSValueKeywords.gperf" {"accumulate", CSSValueAccumulate}, #line 119 "CSSValueKeywords.gperf" {"threedshadow", CSSValueThreedshadow}, #line 339 "CSSValueKeywords.gperf" {"thick", CSSValueThick}, -#line 561 "CSSValueKeywords.gperf" +#line 562 "CSSValueKeywords.gperf" {"orangered", CSSValueOrangered}, #line 132 "CSSValueKeywords.gperf" {"copy", CSSValueCopy}, @@ -732,9 +730,9 @@ findValue (register const char *str, register unsigned int len) {"no-close-quote", CSSValueNoCloseQuote}, #line 459 "CSSValueKeywords.gperf" {"optimizespeed", CSSValueOptimizespeed}, -#line 570 "CSSValueKeywords.gperf" +#line 571 "CSSValueKeywords.gperf" {"pink", CSSValuePink}, -#line 604 "CSSValueKeywords.gperf" +#line 605 "CSSValueKeywords.gperf" {"miter", CSSValueMiter}, #line 442 "CSSValueKeywords.gperf" {"flat", CSSValueFlat}, @@ -744,7 +742,7 @@ findValue (register const char *str, register unsigned int len) {"bolder", CSSValueBolder}, #line 436 "CSSValueKeywords.gperf" {"cover", CSSValueCover}, -#line 469 "CSSValueKeywords.gperf" +#line 470 "CSSValueKeywords.gperf" {"aquamarine", CSSValueAquamarine}, #line 429 "CSSValueKeywords.gperf" {"border", CSSValueBorder}, @@ -760,7 +758,7 @@ findValue (register const char *str, register unsigned int len) {"button-bevel", CSSValueButtonBevel}, #line 325 "CSSValueKeywords.gperf" {"no-open-quote", CSSValueNoOpenQuote}, -#line 529 "CSSValueKeywords.gperf" +#line 530 "CSSValueKeywords.gperf" {"lightcyan", CSSValueLightcyan}, #line 118 "CSSValueKeywords.gperf" {"threedlightshadow", CSSValueThreedlightshadow}, @@ -772,13 +770,13 @@ findValue (register const char *str, register unsigned int len) {"ahead", CSSValueAhead}, #line 284 "CSSValueKeywords.gperf" {"col-resize", CSSValueColResize}, -#line 579 "CSSValueKeywords.gperf" +#line 580 "CSSValueKeywords.gperf" {"seashell", CSSValueSeashell}, -#line 473 "CSSValueKeywords.gperf" +#line 474 "CSSValueKeywords.gperf" {"blanchedalmond", CSSValueBlanchedalmond}, #line 76 "CSSValueKeywords.gperf" {"black", CSSValueBlack}, -#line 518 "CSSValueKeywords.gperf" +#line 519 "CSSValueKeywords.gperf" {"hotpink", CSSValueHotpink}, #line 78 "CSSValueKeywords.gperf" {"fuchsia", CSSValueFuchsia}, @@ -786,13 +784,13 @@ findValue (register const char *str, register unsigned int len) {"down", CSSValueDown}, #line 409 "CSSValueKeywords.gperf" {"menulist", CSSValueMenulist}, -#line 566 "CSSValueKeywords.gperf" +#line 567 "CSSValueKeywords.gperf" {"palevioletred", CSSValuePalevioletred}, -#line 515 "CSSValueKeywords.gperf" +#line 516 "CSSValueKeywords.gperf" {"goldenrod", CSSValueGoldenrod}, -#line 534 "CSSValueKeywords.gperf" +#line 535 "CSSValueKeywords.gperf" {"lightpink", CSSValueLightpink}, -#line 569 "CSSValueKeywords.gperf" +#line 570 "CSSValueKeywords.gperf" {"peru", CSSValuePeru}, #line 455 "CSSValueKeywords.gperf" {"fill", CSSValueFill}, @@ -800,7 +798,7 @@ findValue (register const char *str, register unsigned int len) {"kannada", CSSValueKannada}, #line 373 "CSSValueKeywords.gperf" {"dot-dash", CSSValueDotDash}, -#line 492 "CSSValueKeywords.gperf" +#line 493 "CSSValueKeywords.gperf" {"darkmagenta", CSSValueDarkmagenta}, #line 174 "CSSValueKeywords.gperf" {"gujarati", CSSValueGujarati}, @@ -816,17 +814,17 @@ findValue (register const char *str, register unsigned int len) {"currentcolor", CSSValueCurrentcolor}, #line 172 "CSSValueKeywords.gperf" {"khmer", CSSValueKhmer}, -#line 503 "CSSValueKeywords.gperf" +#line 504 "CSSValueKeywords.gperf" {"darkviolet", CSSValueDarkviolet}, #line 106 "CSSValueKeywords.gperf" {"highlighttext", CSSValueHighlighttext}, -#line 497 "CSSValueKeywords.gperf" +#line 498 "CSSValueKeywords.gperf" {"darksalmon", CSSValueDarksalmon}, #line 305 "CSSValueKeywords.gperf" {"blink", CSSValueBlink}, -#line 574 "CSSValueKeywords.gperf" +#line 575 "CSSValueKeywords.gperf" {"royalblue", CSSValueRoyalblue}, -#line 580 "CSSValueKeywords.gperf" +#line 581 "CSSValueKeywords.gperf" {"sienna", CSSValueSienna}, #line 349 "CSSValueKeywords.gperf" {"inline-axis", CSSValueInlineAxis}, @@ -840,7 +838,7 @@ findValue (register const char *str, register unsigned int len) {"buttonshadow", CSSValueButtonshadow}, #line 59 "CSSValueKeywords.gperf" {"wider", CSSValueWider}, -#line 468 "CSSValueKeywords.gperf" +#line 469 "CSSValueKeywords.gperf" {"antiquewhite", CSSValueAntiquewhite}, #line 54 "CSSValueKeywords.gperf" {"x-large", CSSValueXLarge}, @@ -848,7 +846,7 @@ findValue (register const char *str, register unsigned int len) {"ethiopic-abegede", CSSValueEthiopicAbegede}, #line 207 "CSSValueKeywords.gperf" {"ethiopic-halehame-gez", CSSValueEthiopicHalehameGez}, -#line 593 "CSSValueKeywords.gperf" +#line 594 "CSSValueKeywords.gperf" {"wheat", CSSValueWheat}, #line 295 "CSSValueKeywords.gperf" {"uppercase", CSSValueUppercase}, @@ -856,19 +854,21 @@ findValue (register const char *str, register unsigned int len) {"buttontext", CSSValueButtontext}, #line 317 "CSSValueKeywords.gperf" {"level", CSSValueLevel}, -#line 560 "CSSValueKeywords.gperf" +#line 561 "CSSValueKeywords.gperf" {"olivedrab", CSSValueOlivedrab}, -#line 512 "CSSValueKeywords.gperf" +#line 513 "CSSValueKeywords.gperf" {"gainsboro", CSSValueGainsboro}, +#line 465 "CSSValueKeywords.gperf" + {"maximized", CSSValueMaximized}, #line 186 "CSSValueKeywords.gperf" {"telugu", CSSValueTelugu}, -#line 607 "CSSValueKeywords.gperf" +#line 608 "CSSValueKeywords.gperf" {"after-edge", CSSValueAfterEdge}, #line 332 "CSSValueKeywords.gperf" {"pre-line", CSSValuePreLine}, #line 87 "CSSValueKeywords.gperf" {"red", CSSValueRed}, -#line 508 "CSSValueKeywords.gperf" +#line 509 "CSSValueKeywords.gperf" {"dodgerblue", CSSValueDodgerblue}, #line 83 "CSSValueKeywords.gperf" {"navy", CSSValueNavy}, @@ -882,7 +882,7 @@ findValue (register const char *str, register unsigned int len) {"inactivecaptiontext", CSSValueInactivecaptiontext}, #line 260 "CSSValueKeywords.gperf" {"default", CSSValueDefault}, -#line 471 "CSSValueKeywords.gperf" +#line 472 "CSSValueKeywords.gperf" {"beige", CSSValueBeige}, #line 244 "CSSValueKeywords.gperf" {"inline-block", CSSValueInlineBlock}, @@ -898,17 +898,17 @@ findValue (register const char *str, register unsigned int len) {"captiontext", CSSValueCaptiontext}, #line 166 "CSSValueKeywords.gperf" {"decimal", CSSValueDecimal}, -#line 583 "CSSValueKeywords.gperf" +#line 584 "CSSValueKeywords.gperf" {"slategray", CSSValueSlategray}, #line 156 "CSSValueKeywords.gperf" {"center", CSSValueCenter}, -#line 584 "CSSValueKeywords.gperf" +#line 585 "CSSValueKeywords.gperf" {"slategrey", CSSValueSlategrey}, #line 99 "CSSValueKeywords.gperf" {"buttonface", CSSValueButtonface}, -#line 563 "CSSValueKeywords.gperf" +#line 564 "CSSValueKeywords.gperf" {"palegoldenrod", CSSValuePalegoldenrod}, -#line 608 "CSSValueKeywords.gperf" +#line 609 "CSSValueKeywords.gperf" {"central", CSSValueCentral}, #line 269 "CSSValueKeywords.gperf" {"not-allowed", CSSValueNotAllowed}, @@ -924,21 +924,21 @@ findValue (register const char *str, register unsigned int len) {"sw-resize", CSSValueSwResize}, #line 318 "CSSValueKeywords.gperf" {"line-through", CSSValueLineThrough}, -#line 594 "CSSValueKeywords.gperf" +#line 595 "CSSValueKeywords.gperf" {"whitesmoke", CSSValueWhitesmoke}, -#line 466 "CSSValueKeywords.gperf" +#line 464 "CSSValueKeywords.gperf" {"fullscreen", CSSValueFullscreen}, #line 120 "CSSValueKeywords.gperf" {"window", CSSValueWindow}, #line 66 "CSSValueKeywords.gperf" {"expanded", CSSValueExpanded}, -#line 517 "CSSValueKeywords.gperf" +#line 518 "CSSValueKeywords.gperf" {"honeydew", CSSValueHoneydew}, #line 274 "CSSValueKeywords.gperf" {"nw-resize", CSSValueNwResize}, #line 326 "CSSValueKeywords.gperf" {"nowrap", CSSValueNowrap}, -#line 523 "CSSValueKeywords.gperf" +#line 524 "CSSValueKeywords.gperf" {"lavender", CSSValueLavender}, #line 233 "CSSValueKeywords.gperf" {"georgian", CSSValueGeorgian}, @@ -946,7 +946,7 @@ findValue (register const char *str, register unsigned int len) {"xx-small", CSSValueXxSmall}, #line 133 "CSSValueKeywords.gperf" {"source-over", CSSValueSourceOver}, -#line 511 "CSSValueKeywords.gperf" +#line 512 "CSSValueKeywords.gperf" {"forestgreen", CSSValueForestgreen}, #line 198 "CSSValueKeywords.gperf" {"ethiopic-halehame-aa-et", CSSValueEthiopicHalehameAaEt}, @@ -956,99 +956,99 @@ findValue (register const char *str, register unsigned int len) {"ethiopic-halehame-am-et", CSSValueEthiopicHalehameAmEt}, #line 452 "CSSValueKeywords.gperf" {"visiblefill", CSSValueVisiblefill}, -#line 558 "CSSValueKeywords.gperf" +#line 559 "CSSValueKeywords.gperf" {"navajowhite", CSSValueNavajowhite}, #line 303 "CSSValueKeywords.gperf" {"below", CSSValueBelow}, #line 286 "CSSValueKeywords.gperf" {"text", CSSValueText}, -#line 605 "CSSValueKeywords.gperf" +#line 606 "CSSValueKeywords.gperf" {"bevel", CSSValueBevel}, #line 214 "CSSValueKeywords.gperf" {"ethiopic-halehame-om-et", CSSValueEthiopicHalehameOmEt}, #line 276 "CSSValueKeywords.gperf" {"se-resize", CSSValueSeResize}, -#line 556 "CSSValueKeywords.gperf" +#line 557 "CSSValueKeywords.gperf" {"mistyrose", CSSValueMistyrose}, #line 218 "CSSValueKeywords.gperf" {"ethiopic-halehame-so-et", CSSValueEthiopicHalehameSoEt}, #line 432 "CSSValueKeywords.gperf" {"content-box", CSSValueContentBox}, -#line 541 "CSSValueKeywords.gperf" +#line 542 "CSSValueKeywords.gperf" {"lightyellow", CSSValueLightyellow}, -#line 531 "CSSValueKeywords.gperf" +#line 532 "CSSValueKeywords.gperf" {"lightgray", CSSValueLightgray}, #line 226 "CSSValueKeywords.gperf" {"ethiopic-halehame-ti-et", CSSValueEthiopicHalehameTiEt}, -#line 533 "CSSValueKeywords.gperf" +#line 534 "CSSValueKeywords.gperf" {"lightgrey", CSSValueLightgrey}, #line 265 "CSSValueKeywords.gperf" {"context-menu", CSSValueContextMenu}, #line 273 "CSSValueKeywords.gperf" {"ne-resize", CSSValueNeResize}, -#line 611 "CSSValueKeywords.gperf" +#line 612 "CSSValueKeywords.gperf" {"ideographic", CSSValueIdeographic}, -#line 478 "CSSValueKeywords.gperf" +#line 479 "CSSValueKeywords.gperf" {"chartreuse", CSSValueChartreuse}, -#line 522 "CSSValueKeywords.gperf" +#line 523 "CSSValueKeywords.gperf" {"khaki", CSSValueKhaki}, #line 250 "CSSValueKeywords.gperf" {"table-row", CSSValueTableRow}, -#line 600 "CSSValueKeywords.gperf" +#line 601 "CSSValueKeywords.gperf" {"linearrgb", CSSValueLinearrgb}, -#line 538 "CSSValueKeywords.gperf" - {"lightslategray", CSSValueLightslategray}, #line 539 "CSSValueKeywords.gperf" + {"lightslategray", CSSValueLightslategray}, +#line 540 "CSSValueKeywords.gperf" {"lightslategrey", CSSValueLightslategrey}, -#line 525 "CSSValueKeywords.gperf" +#line 526 "CSSValueKeywords.gperf" {"lawngreen", CSSValueLawngreen}, -#line 587 "CSSValueKeywords.gperf" +#line 588 "CSSValueKeywords.gperf" {"steelblue", CSSValueSteelblue}, #line 127 "CSSValueKeywords.gperf" {"repeat", CSSValueRepeat}, -#line 546 "CSSValueKeywords.gperf" +#line 547 "CSSValueKeywords.gperf" {"mediumblue", CSSValueMediumblue}, -#line 578 "CSSValueKeywords.gperf" +#line 579 "CSSValueKeywords.gperf" {"seagreen", CSSValueSeagreen}, #line 336 "CSSValueKeywords.gperf" {"separate", CSSValueSeparate}, -#line 565 "CSSValueKeywords.gperf" +#line 566 "CSSValueKeywords.gperf" {"paleturquoise", CSSValuePaleturquoise}, -#line 485 "CSSValueKeywords.gperf" +#line 486 "CSSValueKeywords.gperf" {"darkblue", CSSValueDarkblue}, #line 138 "CSSValueKeywords.gperf" {"destination-in", CSSValueDestinationIn}, -#line 476 "CSSValueKeywords.gperf" +#line 477 "CSSValueKeywords.gperf" {"burlywood", CSSValueBurlywood}, -#line 599 "CSSValueKeywords.gperf" +#line 600 "CSSValueKeywords.gperf" {"new", CSSValueNew}, -#line 550 "CSSValueKeywords.gperf" +#line 551 "CSSValueKeywords.gperf" {"mediumslateblue", CSSValueMediumslateblue}, #line 196 "CSSValueKeywords.gperf" {"upper-latin", CSSValueUpperLatin}, -#line 499 "CSSValueKeywords.gperf" +#line 500 "CSSValueKeywords.gperf" {"darkslateblue", CSSValueDarkslateblue}, -#line 549 "CSSValueKeywords.gperf" +#line 550 "CSSValueKeywords.gperf" {"mediumseagreen", CSSValueMediumseagreen}, #line 104 "CSSValueKeywords.gperf" {"graytext", CSSValueGraytext}, #line 458 "CSSValueKeywords.gperf" {"subpixel-antialiased", CSSValueSubpixelAntialiased}, -#line 489 "CSSValueKeywords.gperf" +#line 490 "CSSValueKeywords.gperf" {"darkgreen", CSSValueDarkgreen}, #line 140 "CSSValueKeywords.gperf" {"destination-atop", CSSValueDestinationAtop}, -#line 494 "CSSValueKeywords.gperf" +#line 495 "CSSValueKeywords.gperf" {"darkorange", CSSValueDarkorange}, #line 195 "CSSValueKeywords.gperf" {"upper-alpha", CSSValueUpperAlpha}, -#line 498 "CSSValueKeywords.gperf" +#line 499 "CSSValueKeywords.gperf" {"darkseagreen", CSSValueDarkseagreen}, #line 377 "CSSValueKeywords.gperf" {"skip-white-space", CSSValueSkipWhiteSpace}, #line 169 "CSSValueKeywords.gperf" {"binary", CSSValueBinary}, -#line 521 "CSSValueKeywords.gperf" +#line 522 "CSSValueKeywords.gperf" {"ivory", CSSValueIvory}, #line 460 "CSSValueKeywords.gperf" {"optimizelegibility", CSSValueOptimizelegibility}, @@ -1056,23 +1056,25 @@ findValue (register const char *str, register unsigned int len) {"serif", CSSValueSerif}, #line 60 "CSSValueKeywords.gperf" {"narrower", CSSValueNarrower}, -#line 575 "CSSValueKeywords.gperf" +#line 576 "CSSValueKeywords.gperf" {"saddlebrown", CSSValueSaddlebrown}, #line 209 "CSSValueKeywords.gperf" {"ethiopic-abegede-gez", CSSValueEthiopicAbegedeGez}, +#line 467 "CSSValueKeywords.gperf" + {"windowed", CSSValueWindowed}, #line 72 "CSSValueKeywords.gperf" {"fantasy", CSSValueFantasy}, #line 414 "CSSValueKeywords.gperf" {"progress-bar", CSSValueProgressBar}, -#line 493 "CSSValueKeywords.gperf" +#line 494 "CSSValueKeywords.gperf" {"darkolivegreen", CSSValueDarkolivegreen}, #line 31 "CSSValueKeywords.gperf" {"status-bar", CSSValueStatusBar}, -#line 506 "CSSValueKeywords.gperf" - {"dimgray", CSSValueDimgray}, #line 507 "CSSValueKeywords.gperf" + {"dimgray", CSSValueDimgray}, +#line 508 "CSSValueKeywords.gperf" {"dimgrey", CSSValueDimgrey}, -#line 567 "CSSValueKeywords.gperf" +#line 568 "CSSValueKeywords.gperf" {"papayawhip", CSSValuePapayawhip}, #line 453 "CSSValueKeywords.gperf" {"visiblestroke", CSSValueVisiblestroke}, @@ -1092,9 +1094,9 @@ findValue (register const char *str, register unsigned int len) {"destination-out", CSSValueDestinationOut}, #line 231 "CSSValueKeywords.gperf" {"hebrew", CSSValueHebrew}, -#line 617 "CSSValueKeywords.gperf" +#line 618 "CSSValueKeywords.gperf" {"reset-size", CSSValueResetSize}, -#line 597 "CSSValueKeywords.gperf" +#line 598 "CSSValueKeywords.gperf" {"evenodd", CSSValueEvenodd}, #line 107 "CSSValueKeywords.gperf" {"inactiveborder", CSSValueInactiveborder}, @@ -1106,7 +1108,7 @@ findValue (register const char *str, register unsigned int len) {"overline", CSSValueOverline}, #line 389 "CSSValueKeywords.gperf" {"inner-spin-button", CSSValueInnerSpinButton}, -#line 486 "CSSValueKeywords.gperf" +#line 487 "CSSValueKeywords.gperf" {"darkcyan", CSSValueDarkcyan}, #line 113 "CSSValueKeywords.gperf" {"menutext", CSSValueMenutext}, @@ -1114,15 +1116,15 @@ findValue (register const char *str, register unsigned int len) {"tigrinya-et", CSSValueTigrinyaEt}, #line 64 "CSSValueKeywords.gperf" {"semi-condensed", CSSValueSemiCondensed}, -#line 496 "CSSValueKeywords.gperf" +#line 497 "CSSValueKeywords.gperf" {"darkred", CSSValueDarkred}, -#line 601 "CSSValueKeywords.gperf" +#line 602 "CSSValueKeywords.gperf" {"optimizequality", CSSValueOptimizequality}, #line 203 "CSSValueKeywords.gperf" {"ethiopic-abegede-am-et", CSSValueEthiopicAbegedeAmEt}, #line 148 "CSSValueKeywords.gperf" {"text-top", CSSValueTextTop}, -#line 510 "CSSValueKeywords.gperf" +#line 511 "CSSValueKeywords.gperf" {"floralwhite", CSSValueFloralwhite}, #line 70 "CSSValueKeywords.gperf" {"sans-serif", CSSValueSansSerif}, @@ -1130,7 +1132,7 @@ findValue (register const char *str, register unsigned int len) {"padding-box", CSSValuePaddingBox}, #line 55 "CSSValueKeywords.gperf" {"xx-large", CSSValueXxLarge}, -#line 553 "CSSValueKeywords.gperf" +#line 554 "CSSValueKeywords.gperf" {"mediumvioletred", CSSValueMediumvioletred}, #line 228 "CSSValueKeywords.gperf" {"ethiopic-abegede-ti-et", CSSValueEthiopicAbegedeTiEt}, @@ -1140,13 +1142,13 @@ findValue (register const char *str, register unsigned int len) {"open-quote", CSSValueOpenQuote}, #line 61 "CSSValueKeywords.gperf" {"ultra-condensed", CSSValueUltraCondensed}, -#line 547 "CSSValueKeywords.gperf" +#line 548 "CSSValueKeywords.gperf" {"mediumorchid", CSSValueMediumorchid}, -#line 524 "CSSValueKeywords.gperf" +#line 525 "CSSValueKeywords.gperf" {"lavenderblush", CSSValueLavenderblush}, #line 199 "CSSValueKeywords.gperf" {"ethiopic-halehame-aa-er", CSSValueEthiopicHalehameAaEr}, -#line 495 "CSSValueKeywords.gperf" +#line 496 "CSSValueKeywords.gperf" {"darkorchid", CSSValueDarkorchid}, #line 410 "CSSValueKeywords.gperf" {"menulist-button", CSSValueMenulistButton}, @@ -1166,11 +1168,11 @@ findValue (register const char *str, register unsigned int len) {"ethiopic-halehame-ti-er", CSSValueEthiopicHalehameTiEr}, #line 95 "CSSValueKeywords.gperf" {"activeborder", CSSValueActiveborder}, -#line 516 "CSSValueKeywords.gperf" +#line 517 "CSSValueKeywords.gperf" {"greenyellow", CSSValueGreenyellow}, #line 443 "CSSValueKeywords.gperf" {"preserve-3d", CSSValuePreserve3d}, -#line 548 "CSSValueKeywords.gperf" +#line 549 "CSSValueKeywords.gperf" {"mediumpurple", CSSValueMediumpurple}, #line 263 "CSSValueKeywords.gperf" {"vertical-text", CSSValueVerticalText}, @@ -1178,7 +1180,7 @@ findValue (register const char *str, register unsigned int len) {"fixed", CSSValueFixed}, #line 378 "CSSValueKeywords.gperf" {"break-all", CSSValueBreakAll}, -#line 615 "CSSValueKeywords.gperf" +#line 616 "CSSValueKeywords.gperf" {"use-script", CSSValueUseScript}, #line 413 "CSSValueKeywords.gperf" {"outer-spin-button", CSSValueOuterSpinButton}, @@ -1198,23 +1200,23 @@ findValue (register const char *str, register unsigned int len) {"forwards", CSSValueForwards}, #line 251 "CSSValueKeywords.gperf" {"table-column-group", CSSValueTableColumnGroup}, -#line 606 "CSSValueKeywords.gperf" +#line 607 "CSSValueKeywords.gperf" {"before-edge", CSSValueBeforeEdge}, #line 415 "CSSValueKeywords.gperf" {"slider-horizontal", CSSValueSliderHorizontal}, -#line 537 "CSSValueKeywords.gperf" +#line 538 "CSSValueKeywords.gperf" {"lightskyblue", CSSValueLightskyblue}, #line 26 "CSSValueKeywords.gperf" {"message-box", CSSValueMessageBox}, -#line 545 "CSSValueKeywords.gperf" +#line 546 "CSSValueKeywords.gperf" {"mediumaquamarine", CSSValueMediumaquamarine}, #line 304 "CSSValueKeywords.gperf" {"bidi-override", CSSValueBidiOverride}, -#line 572 "CSSValueKeywords.gperf" +#line 573 "CSSValueKeywords.gperf" {"powderblue", CSSValuePowderblue}, #line 388 "CSSValueKeywords.gperf" {"default-button", CSSValueDefaultButton}, -#line 487 "CSSValueKeywords.gperf" +#line 488 "CSSValueKeywords.gperf" {"darkgoldenrod", CSSValueDarkgoldenrod}, #line 97 "CSSValueKeywords.gperf" {"appworkspace", CSSValueAppworkspace}, @@ -1232,23 +1234,23 @@ findValue (register const char *str, register unsigned int len) {"media-mute-button", CSSValueMediaMuteButton}, #line 346 "CSSValueKeywords.gperf" {"reverse", CSSValueReverse}, -#line 488 "CSSValueKeywords.gperf" +#line 489 "CSSValueKeywords.gperf" {"darkgray", CSSValueDarkgray}, -#line 490 "CSSValueKeywords.gperf" +#line 491 "CSSValueKeywords.gperf" {"darkgrey", CSSValueDarkgrey}, #line 282 "CSSValueKeywords.gperf" {"nesw-resize", CSSValueNeswResize}, -#line 551 "CSSValueKeywords.gperf" +#line 552 "CSSValueKeywords.gperf" {"mediumspringgreen", CSSValueMediumspringgreen}, #line 142 "CSSValueKeywords.gperf" {"plus-darker", CSSValuePlusDarker}, -#line 500 "CSSValueKeywords.gperf" - {"darkslategray", CSSValueDarkslategray}, #line 501 "CSSValueKeywords.gperf" + {"darkslategray", CSSValueDarkslategray}, +#line 502 "CSSValueKeywords.gperf" {"darkslategrey", CSSValueDarkslategrey}, #line 285 "CSSValueKeywords.gperf" {"row-resize", CSSValueRowResize}, -#line 577 "CSSValueKeywords.gperf" +#line 578 "CSSValueKeywords.gperf" {"sandybrown", CSSValueSandybrown}, #line 221 "CSSValueKeywords.gperf" {"tigrinya-er", CSSValueTigrinyaEr}, @@ -1258,27 +1260,27 @@ findValue (register const char *str, register unsigned int len) {"background", CSSValueBackground}, #line 430 "CSSValueKeywords.gperf" {"border-box", CSSValueBorderBox}, -#line 552 "CSSValueKeywords.gperf" +#line 553 "CSSValueKeywords.gperf" {"mediumturquoise", CSSValueMediumturquoise}, -#line 502 "CSSValueKeywords.gperf" +#line 503 "CSSValueKeywords.gperf" {"darkturquoise", CSSValueDarkturquoise}, #line 115 "CSSValueKeywords.gperf" {"threeddarkshadow", CSSValueThreeddarkshadow}, #line 224 "CSSValueKeywords.gperf" {"ethiopic-abegede-ti-er", CSSValueEthiopicAbegedeTiEr}, -#line 573 "CSSValueKeywords.gperf" +#line 574 "CSSValueKeywords.gperf" {"rosybrown", CSSValueRosybrown}, #line 328 "CSSValueKeywords.gperf" {"overlay", CSSValueOverlay}, -#line 491 "CSSValueKeywords.gperf" +#line 492 "CSSValueKeywords.gperf" {"darkkhaki", CSSValueDarkkhaki}, -#line 481 "CSSValueKeywords.gperf" +#line 482 "CSSValueKeywords.gperf" {"cornflowerblue", CSSValueCornflowerblue}, #line 402 "CSSValueKeywords.gperf" {"media-sliderthumb", CSSValueMediaSliderthumb}, #line 418 "CSSValueKeywords.gperf" {"sliderthumb-vertical", CSSValueSliderthumbVertical}, -#line 595 "CSSValueKeywords.gperf" +#line 596 "CSSValueKeywords.gperf" {"yellowgreen", CSSValueYellowgreen}, #line 354 "CSSValueKeywords.gperf" {"backwards", CSSValueBackwards}, @@ -1286,7 +1288,7 @@ findValue (register const char *str, register unsigned int len) {"table-header-group", CSSValueTableHeaderGroup}, #line 129 "CSSValueKeywords.gperf" {"repeat-y", CSSValueRepeatY}, -#line 509 "CSSValueKeywords.gperf" +#line 510 "CSSValueKeywords.gperf" {"firebrick", CSSValueFirebrick}, #line 382 "CSSValueKeywords.gperf" {"checkbox", CSSValueCheckbox}, @@ -1294,7 +1296,7 @@ findValue (register const char *str, register unsigned int len) {"media-volume-slider", CSSValueMediaVolumeSlider}, #line 230 "CSSValueKeywords.gperf" {"upper-norwegian", CSSValueUpperNorwegian}, -#line 530 "CSSValueKeywords.gperf" +#line 531 "CSSValueKeywords.gperf" {"lightgoldenrodyellow", CSSValueLightgoldenrodyellow}, #line 65 "CSSValueKeywords.gperf" {"semi-expanded", CSSValueSemiExpanded}, @@ -1318,7 +1320,7 @@ findValue (register const char *str, register unsigned int len) {"upper-greek", CSSValueUpperGreek}, #line 247 "CSSValueKeywords.gperf" {"table-row-group", CSSValueTableRowGroup}, -#line 526 "CSSValueKeywords.gperf" +#line 527 "CSSValueKeywords.gperf" {"lemonchiffon", CSSValueLemonchiffon}, #line 212 "CSSValueKeywords.gperf" {"lower-norwegian", CSSValueLowerNorwegian}, @@ -1328,7 +1330,7 @@ findValue (register const char *str, register unsigned int len) {"media-play-button", CSSValueMediaPlayButton}, #line 427 "CSSValueKeywords.gperf" {"caps-lock-indicator", CSSValueCapsLockIndicator}, -#line 504 "CSSValueKeywords.gperf" +#line 505 "CSSValueKeywords.gperf" {"deeppink", CSSValueDeeppink}, #line 121 "CSSValueKeywords.gperf" {"windowframe", CSSValueWindowframe}, @@ -1350,7 +1352,7 @@ findValue (register const char *str, register unsigned int len) {"table-footer-group", CSSValueTableFooterGroup}, #line 223 "CSSValueKeywords.gperf" {"tigrinya-er-abegede", CSSValueTigrinyaErAbegede}, -#line 568 "CSSValueKeywords.gperf" +#line 569 "CSSValueKeywords.gperf" {"peachpuff", CSSValuePeachpuff}, #line 379 "CSSValueKeywords.gperf" {"break-word", CSSValueBreakWord}, @@ -1376,11 +1378,11 @@ findValue (register const char *str, register unsigned int len) {"-webkit-center", CSSValueWebkitCenter}, #line 393 "CSSValueKeywords.gperf" {"media-fullscreen-button", CSSValueMediaFullscreenButton}, -#line 610 "CSSValueKeywords.gperf" +#line 611 "CSSValueKeywords.gperf" {"text-after-edge", CSSValueTextAfterEdge}, #line 30 "CSSValueKeywords.gperf" {"-webkit-control", CSSValueWebkitControl}, -#line 505 "CSSValueKeywords.gperf" +#line 506 "CSSValueKeywords.gperf" {"deepskyblue", CSSValueDeepskyblue}, #line 290 "CSSValueKeywords.gperf" {"-webkit-grab", CSSValueWebkitGrab}, @@ -1394,7 +1396,7 @@ findValue (register const char *str, register unsigned int len) {"-webkit-text", CSSValueWebkitText}, #line 94 "CSSValueKeywords.gperf" {"-webkit-activelink", CSSValueWebkitActivelink}, -#line 609 "CSSValueKeywords.gperf" +#line 610 "CSSValueKeywords.gperf" {"text-before-edge", CSSValueTextBeforeEdge}, #line 421 "CSSValueKeywords.gperf" {"searchfield-decoration", CSSValueSearchfieldDecoration}, @@ -1482,118 +1484,118 @@ findValue (register const char *str, register unsigned int len) -1, 66, -1, -1, -1, 67, 68, -1, -1, -1, 69, 70, 71, -1, -1, 72, -1, -1, 73, -1, -1, 74, -1, -1, -1, 75, -1, 76, -1, -1, - 77, 78, -1, -1, -1, -1, 79, -1, -1, -1, - -1, 80, 81, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 82, -1, -1, 83, 84, -1, -1, - -1, -1, -1, -1, -1, -1, 85, -1, -1, -1, - 86, 87, -1, -1, -1, 88, 89, -1, -1, -1, - -1, 90, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 91, 92, -1, -1, -1, + 77, 78, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 79, 80, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 81, -1, -1, 82, 83, -1, -1, + -1, -1, -1, -1, -1, -1, 84, -1, -1, -1, + 85, 86, -1, -1, -1, 87, 88, -1, -1, -1, + -1, 89, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 90, 91, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, - 95, 96, -1, -1, -1, -1, -1, -1, -1, -1, - 97, -1, -1, 98, -1, -1, 99, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 100, -1, 101, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 102, -1, -1, -1, -1, - 103, -1, 104, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 105, -1, -1, 106, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 107, 108, 109, -1, -1, - -1, -1, 110, -1, -1, -1, -1, 111, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 112, -1, -1, - -1, 113, -1, -1, -1, -1, 114, 115, -1, -1, - 116, 117, -1, -1, -1, 118, -1, -1, -1, -1, - -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, - 120, -1, -1, -1, -1, -1, 121, 122, -1, -1, - -1, 123, -1, -1, -1, -1, -1, -1, -1, 124, - 125, 126, 127, -1, -1, 128, -1, -1, 129, -1, - -1, 130, -1, 131, -1, 132, -1, 133, -1, -1, - -1, 134, 135, 136, -1, -1, 137, -1, -1, -1, - -1, -1, 138, 139, -1, 140, -1, 141, -1, -1, - 142, 143, -1, -1, -1, -1, -1, -1, -1, -1, - 144, -1, -1, 145, 146, -1, -1, -1, 147, -1, - -1, -1, -1, -1, -1, -1, 148, 149, -1, -1, - -1, 150, -1, -1, -1, 151, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 152, -1, -1, -1, -1, - -1, -1, 153, -1, -1, -1, -1, -1, -1, -1, + 94, 95, -1, -1, -1, -1, -1, -1, -1, -1, + 96, -1, -1, 97, -1, -1, 98, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 99, -1, 100, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, + 102, -1, 103, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 104, -1, -1, 105, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 106, 107, 108, -1, -1, + -1, -1, 109, -1, -1, -1, -1, 110, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, + -1, 112, -1, -1, -1, -1, 113, 114, -1, -1, + 115, 116, -1, -1, -1, 117, -1, -1, -1, -1, + -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, + 119, -1, -1, -1, -1, -1, 120, 121, -1, -1, + -1, 122, -1, -1, -1, -1, -1, -1, -1, 123, + 124, 125, 126, -1, -1, 127, -1, -1, 128, -1, + -1, 129, -1, 130, -1, 131, -1, 132, -1, -1, + -1, 133, 134, 135, -1, -1, 136, -1, -1, -1, + -1, -1, 137, 138, -1, 139, -1, 140, -1, -1, + 141, 142, -1, -1, -1, -1, -1, -1, -1, -1, + 143, -1, -1, 144, 145, -1, -1, -1, 146, -1, + -1, -1, -1, -1, -1, -1, 147, 148, -1, -1, + -1, 149, -1, -1, -1, 150, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 151, -1, -1, -1, -1, + -1, -1, 152, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 153, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 154, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 155, -1, -1, -1, 156, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 157, -1, -1, -1, -1, 158, -1, -1, -1, - -1, 159, -1, -1, -1, 160, -1, -1, 161, -1, - 162, 163, -1, -1, -1, 164, -1, -1, -1, -1, - 165, -1, -1, 166, -1, 167, -1, 168, 169, -1, - -1, -1, -1, -1, -1, -1, -1, 170, -1, -1, - 171, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 172, 173, -1, -1, -1, -1, -1, -1, -1, - 174, 175, -1, -1, -1, 176, -1, -1, -1, 177, - 178, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 179, -1, -1, -1, -1, -1, 180, 181, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 182, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 183, -1, -1, -1, 184, -1, -1, -1, -1, - 185, -1, -1, -1, -1, -1, -1, 186, -1, -1, - -1, -1, -1, 187, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 188, -1, 189, -1, 190, -1, -1, - 191, 192, -1, -1, -1, -1, -1, -1, 193, -1, - 194, 195, -1, -1, -1, 196, 197, -1, 198, 199, - 200, 201, -1, -1, -1, 202, 203, -1, -1, -1, - 204, -1, -1, -1, -1, -1, -1, -1, 205, 206, - -1, -1, -1, -1, -1, -1, 207, 208, -1, -1, - -1, 209, 210, -1, -1, 211, -1, -1, 212, -1, - 213, 214, 215, -1, -1, 216, -1, -1, -1, -1, - -1, -1, -1, 217, -1, 218, -1, -1, -1, -1, - 219, -1, -1, -1, 220, 221, -1, 222, -1, -1, - -1, -1, 223, -1, -1, 224, 225, -1, -1, 226, - 227, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 228, 229, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 230, -1, -1, -1, -1, -1, 231, 232, -1, - -1, -1, -1, 233, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 234, 235, -1, -1, 236, -1, -1, -1, -1, - 237, -1, -1, 238, -1, -1, 239, 240, -1, -1, - -1, 241, -1, -1, -1, -1, 242, -1, -1, 243, - 244, -1, -1, -1, -1, -1, -1, 245, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 246, 247, -1, -1, -1, 248, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 249, -1, -1, - -1, 250, -1, 251, -1, 252, -1, 253, 254, -1, - -1, 255, 256, -1, -1, -1, -1, -1, -1, -1, - 257, -1, -1, -1, -1, 258, -1, 259, 260, -1, - -1, 261, -1, -1, -1, 262, -1, -1, -1, -1, - 263, -1, -1, -1, -1, 264, 265, 266, -1, -1, - 267, -1, 268, -1, -1, 269, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 270, -1, 271, -1, 272, - -1, -1, -1, -1, -1, 273, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 274, 275, - 276, 277, -1, -1, -1, 278, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 279, -1, -1, -1, -1, - -1, 280, -1, -1, -1, -1, 281, 282, 283, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 284, -1, - 285, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 286, -1, 287, -1, -1, -1, 288, -1, -1, -1, - 289, -1, -1, -1, -1, 290, 291, 292, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 293, -1, 294, -1, 295, -1, -1, -1, -1, - 296, 297, -1, -1, -1, 298, -1, -1, -1, -1, - -1, -1, -1, 299, -1, -1, -1, 300, -1, -1, - -1, -1, 301, -1, 302, -1, 303, 304, 305, -1, - -1, -1, -1, -1, -1, 306, 307, -1, -1, -1, - 308, -1, -1, -1, -1, 309, -1, 310, -1, -1, - -1, -1, -1, -1, 311, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 312, - -1, -1, 313, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 314, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 315, - -1, 316, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 317, -1, -1, 318, -1, -1, -1, - -1, -1, -1, -1, 319, -1, -1, 320, -1, -1, - -1, 321, -1, 322, -1, -1, -1, 323, -1, -1, - -1, -1, -1, -1, -1, -1, 324, 325, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 155, -1, -1, -1, -1, 156, -1, -1, -1, + -1, 157, -1, -1, -1, 158, -1, -1, 159, -1, + 160, 161, -1, -1, -1, 162, -1, -1, -1, -1, + 163, -1, -1, 164, -1, 165, -1, 166, 167, -1, + -1, -1, -1, -1, -1, -1, -1, 168, -1, -1, + 169, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 170, 171, -1, -1, -1, -1, -1, -1, -1, + 172, 173, -1, -1, -1, 174, -1, -1, -1, 175, + 176, -1, -1, -1, -1, -1, 177, -1, -1, -1, + 178, -1, -1, -1, -1, -1, 179, 180, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 181, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 182, -1, -1, -1, 183, -1, -1, -1, -1, + 184, -1, -1, -1, -1, -1, -1, 185, -1, -1, + -1, -1, -1, 186, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 187, -1, 188, -1, 189, -1, -1, + 190, 191, -1, -1, -1, -1, -1, -1, 192, -1, + 193, 194, -1, -1, -1, 195, 196, -1, 197, 198, + 199, 200, -1, -1, -1, 201, 202, -1, -1, -1, + 203, -1, -1, -1, -1, -1, -1, -1, 204, 205, + -1, -1, -1, -1, -1, -1, 206, 207, -1, -1, + -1, 208, 209, -1, -1, 210, -1, -1, 211, -1, + 212, 213, 214, -1, -1, 215, -1, -1, -1, -1, + -1, -1, -1, 216, -1, 217, -1, -1, -1, -1, + 218, -1, -1, -1, 219, 220, -1, 221, -1, -1, + -1, -1, 222, -1, -1, 223, 224, -1, -1, 225, + 226, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 227, 228, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 229, -1, -1, -1, -1, -1, 230, 231, -1, + -1, -1, -1, 232, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 233, 234, -1, -1, 235, -1, -1, -1, -1, + 236, -1, -1, 237, -1, -1, 238, 239, -1, -1, + -1, 240, -1, -1, -1, -1, 241, -1, -1, 242, + 243, -1, -1, -1, -1, -1, -1, 244, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 245, 246, -1, -1, -1, 247, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 248, -1, -1, + -1, 249, -1, 250, -1, 251, -1, 252, 253, -1, + -1, 254, 255, -1, -1, -1, -1, -1, -1, -1, + 256, -1, -1, -1, -1, 257, -1, 258, 259, -1, + -1, 260, -1, -1, -1, 261, -1, -1, -1, -1, + 262, -1, -1, -1, -1, 263, 264, 265, -1, -1, + 266, -1, 267, -1, -1, 268, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 269, -1, 270, -1, 271, + -1, -1, -1, -1, -1, 272, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 273, 274, + 275, 276, -1, -1, -1, 277, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 278, -1, -1, -1, -1, + -1, 279, -1, -1, -1, -1, 280, 281, 282, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 283, -1, + 284, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 285, -1, 286, -1, -1, -1, 287, -1, -1, -1, + 288, -1, -1, -1, -1, 289, 290, 291, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 292, -1, 293, -1, 294, -1, -1, -1, -1, + 295, 296, -1, -1, -1, 297, -1, -1, -1, -1, + -1, -1, -1, 298, -1, -1, -1, 299, -1, -1, + -1, -1, 300, -1, 301, -1, 302, 303, 304, -1, + -1, -1, -1, -1, -1, 305, 306, -1, -1, -1, + 307, -1, -1, -1, -1, 308, -1, 309, -1, -1, + -1, -1, -1, -1, 310, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 311, + -1, -1, 312, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 313, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 314, + -1, 315, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 316, -1, -1, 317, -1, -1, -1, + -1, -1, -1, -1, 318, -1, -1, 319, -1, -1, + -1, 320, -1, 321, -1, -1, -1, 322, -1, -1, + -1, -1, -1, -1, -1, 323, 324, 325, -1, -1, 326, -1, -1, -1, -1, 327, -1, -1, -1, -1, -1, 328, -1, -1, -1, -1, 329, -1, -1, -1, -1, 330, -1, -1, -1, 331, -1, -1, -1, -1, @@ -1639,136 +1641,135 @@ findValue (register const char *str, register unsigned int len) -1, 417, -1, -1, -1, -1, 418, -1, 419, -1, 420, -1, -1, -1, -1, -1, 421, -1, -1, -1, -1, 422, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 423, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 424, 425, -1, -1, -1, - -1, -1, -1, -1, -1, 426, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 427, -1, 428, -1, -1, -1, -1, 429, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 430, - 431, 432, -1, -1, -1, -1, -1, -1, -1, 433, - 434, -1, 435, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 436, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 437, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 438, -1, 439, -1, -1, 440, 441, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 442, -1, -1, - -1, -1, -1, 443, -1, -1, -1, -1, -1, -1, - -1, -1, 444, -1, -1, -1, -1, -1, -1, -1, - -1, 445, -1, -1, -1, 446, -1, 447, -1, -1, - -1, -1, -1, -1, -1, 448, -1, 449, -1, -1, - 450, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 451, -1, -1, -1, -1, -1, -1, 452, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 453, -1, -1, -1, 454, -1, 455, -1, -1, - 456, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 457, -1, -1, -1, -1, -1, -1, -1, 458, - -1, -1, 459, -1, -1, -1, 460, -1, -1, -1, - -1, 461, -1, -1, 462, 463, -1, -1, -1, -1, - -1, 464, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 465, -1, -1, -1, -1, 466, -1, -1, - -1, -1, -1, 467, -1, -1, -1, -1, -1, -1, - 468, -1, -1, -1, -1, 469, -1, -1, -1, -1, - -1, -1, -1, -1, 470, 471, -1, -1, 472, 473, - -1, -1, -1, 474, -1, -1, -1, 475, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 476, -1, -1, - -1, -1, 477, -1, -1, -1, -1, 478, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 479, -1, 480, -1, -1, - -1, -1, -1, -1, -1, -1, 481, 482, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 483, -1, 484, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 485, -1, -1, 486, -1, 487, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 488, 489, -1, -1, -1, -1, - -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, - -1, 491, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 423, 424, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 425, 426, -1, -1, -1, + -1, -1, -1, -1, -1, 427, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 428, -1, 429, -1, -1, -1, -1, 430, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 431, + 432, 433, -1, -1, -1, -1, -1, -1, -1, 434, + 435, -1, 436, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 437, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 438, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 439, -1, 440, -1, -1, 441, 442, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 443, -1, -1, + -1, -1, -1, 444, -1, -1, -1, -1, -1, -1, + -1, -1, 445, -1, -1, -1, -1, -1, -1, -1, + -1, 446, -1, -1, -1, 447, -1, 448, -1, -1, + -1, -1, -1, -1, -1, 449, -1, 450, -1, -1, + 451, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 452, -1, -1, -1, -1, -1, -1, 453, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 454, -1, -1, -1, 455, -1, 456, -1, -1, + 457, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 458, -1, -1, -1, -1, -1, -1, -1, 459, + -1, -1, 460, -1, -1, -1, 461, -1, -1, -1, + -1, 462, -1, -1, 463, 464, -1, -1, -1, -1, + -1, 465, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 466, -1, -1, -1, -1, 467, -1, -1, + -1, -1, -1, 468, -1, -1, -1, -1, -1, -1, + 469, -1, -1, -1, -1, 470, -1, -1, -1, -1, + -1, -1, -1, -1, 471, 472, -1, -1, 473, 474, + -1, -1, -1, 475, -1, -1, -1, 476, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 477, -1, -1, + -1, -1, 478, -1, -1, -1, -1, 479, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 480, -1, 481, -1, -1, + -1, -1, -1, -1, -1, -1, 482, 483, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 484, -1, 485, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 486, -1, -1, 487, -1, 488, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 489, 490, -1, -1, -1, -1, + -1, -1, 491, -1, -1, -1, -1, -1, -1, -1, -1, 492, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 493, -1, -1, + -1, 493, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 494, -1, -1, - -1, -1, -1, -1, -1, 495, -1, -1, -1, -1, - -1, 496, 497, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 498, -1, - 499, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 500, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 495, -1, -1, + -1, -1, -1, -1, -1, 496, -1, -1, -1, -1, + -1, 497, 498, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 499, -1, + 500, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 501, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 501, -1, -1, -1, -1, -1, -1, - -1, -1, 502, -1, -1, 503, -1, -1, -1, -1, - -1, -1, -1, 504, -1, -1, -1, -1, -1, -1, - 505, 506, -1, -1, -1, -1, 507, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 508, 509, -1, -1, -1, - -1, -1, -1, 510, -1, -1, -1, -1, 511, -1, - -1, 512, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 502, -1, -1, -1, -1, -1, -1, + -1, -1, 503, -1, -1, 504, -1, -1, -1, -1, + -1, -1, -1, 505, -1, -1, -1, -1, -1, -1, + 506, 507, -1, -1, -1, -1, 508, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 513, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 514, - -1, -1, -1, 515, -1, -1, -1, -1, 516, -1, - 517, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 509, 510, -1, -1, -1, + -1, -1, -1, 511, -1, -1, -1, -1, 512, -1, + -1, 513, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 518, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 519, -1, -1, + -1, -1, 514, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 515, + -1, -1, -1, 516, -1, -1, -1, -1, 517, -1, + 518, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 520, -1, -1, -1, -1, -1, -1, -1, 521, -1, - 522, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 523, -1, -1, + -1, 519, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 520, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 524, + 521, -1, -1, -1, -1, -1, -1, -1, 522, -1, + 523, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 524, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 525, - -1, -1, -1, -1, -1, -1, 526, -1, -1, -1, - -1, 527, -1, -1, -1, -1, 528, -1, -1, -1, - -1, -1, 529, -1, -1, -1, -1, -1, -1, -1, - -1, 530, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 526, + -1, -1, -1, -1, -1, -1, 527, -1, -1, -1, + -1, 528, -1, -1, -1, -1, 529, -1, -1, -1, + -1, -1, 530, -1, -1, -1, -1, -1, -1, -1, -1, 531, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 532, - -1, -1, 533, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 532, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 533, + -1, -1, 534, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 534, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 535, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 536, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 535, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 536, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 537, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 537, -1, -1, -1, 538, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 539, -1, -1, - -1, 540, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 541, -1, -1, -1, -1, 542, -1, -1, -1, -1, + -1, -1, -1, 538, -1, -1, -1, 539, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 540, -1, -1, + -1, 541, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 543, -1, 544, -1, -1, -1, -1, - 545, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 542, -1, -1, -1, -1, 543, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 546, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 547, -1, + -1, -1, -1, 544, -1, 545, -1, -1, -1, -1, + 546, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 547, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 548, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 548, -1, -1, 549, -1, -1, -1, -1, - 550, -1, 551, -1, -1, -1, -1, 552, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 553, -1, -1, -1, - -1, -1, 554, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 549, -1, -1, 550, -1, -1, -1, -1, + 551, -1, 552, -1, -1, -1, -1, 553, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 555, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 554, -1, -1, -1, + -1, -1, 555, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 556, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 556, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 557, - -1, -1, 558, 559, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 557, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 558, + -1, -1, 559, 560, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 560, -1, -1, -1, - -1, -1, -1, 561, -1, 562, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 561, -1, -1, -1, + -1, -1, -1, 562, -1, 563, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -1787,38 +1788,38 @@ findValue (register const char *str, register unsigned int len) -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 563, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 564, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 564, -1, -1, 565, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 565, -1, -1, 566, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 566, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 567, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 567, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 568, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 568, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 569, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 569, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 570, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 570, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 571, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 571, -1, -1, -1, - -1, -1, 572, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 572, -1, -1, -1, + -1, -1, 573, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -1826,12 +1827,12 @@ findValue (register const char *str, register unsigned int len) -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 573, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 574, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 574, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 575, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 576, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -1847,58 +1848,59 @@ findValue (register const char *str, register unsigned int len) -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 576, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 577, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 577, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 578, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 578, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 579, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 579, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 580, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 581, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 582, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 583, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 581, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 582, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 583, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 584, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 584, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 585, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 585, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 586, -1, -1, -1, -1, -1, - -1, -1, 587, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 586, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 587, -1, -1, -1, -1, -1, + -1, -1, 588, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 588, - -1, -1, 589, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 589, + -1, -1, 590, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 590, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 591, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 592, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 593, -1, -1, -1, -1, -1, -1, -1, + -1, 593, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 594, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -1907,37 +1909,37 @@ findValue (register const char *str, register unsigned int len) -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 594, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 595, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 595, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 596, -1, 597, -1, -1, -1, -1, 598, - -1, -1, -1, -1, -1, -1, -1, 599, -1, -1, + -1, -1, 597, -1, 598, -1, -1, -1, -1, 599, + -1, -1, -1, -1, -1, -1, -1, 600, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 600, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 601, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 601, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 602, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 602, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 603, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 603, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 604, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 604, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 605, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -1959,14 +1961,14 @@ findValue (register const char *str, register unsigned int len) -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 605, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 606, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 606, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 607, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -1980,7 +1982,7 @@ findValue (register const char *str, register unsigned int len) -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 607, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 608, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -2023,7 +2025,7 @@ findValue (register const char *str, register unsigned int len) -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 608, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 609, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -2060,7 +2062,7 @@ findValue (register const char *str, register unsigned int len) -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 609, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 610, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -2074,7 +2076,7 @@ findValue (register const char *str, register unsigned int len) -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 610, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 611, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -2133,7 +2135,7 @@ findValue (register const char *str, register unsigned int len) -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 611, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 612, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -2157,7 +2159,7 @@ findValue (register const char *str, register unsigned int len) -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 612 + -1, -1, -1, -1, -1, -1, -1, -1, 613 }; if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH) @@ -2179,7 +2181,7 @@ findValue (register const char *str, register unsigned int len) } return 0; } -#line 624 "CSSValueKeywords.gperf" +#line 625 "CSSValueKeywords.gperf" static const char * const valueList[] = { "", @@ -2635,10 +2637,11 @@ static const char * const valueList[] = { "optimizelegibility", "geometricprecision", "srgb", -"mini", "floating", -"application", "fullscreen", +"maximized", +"minimized", +"windowed", "aliceblue", "antiquewhite", "aquamarine", diff --git a/src/3rdparty/webkit/WebCore/generated/CSSValueKeywords.h b/src/3rdparty/webkit/WebCore/generated/CSSValueKeywords.h index d79e658..71e8514 100644 --- a/src/3rdparty/webkit/WebCore/generated/CSSValueKeywords.h +++ b/src/3rdparty/webkit/WebCore/generated/CSSValueKeywords.h @@ -456,168 +456,169 @@ const int CSSValueOptimizespeed = 449; const int CSSValueOptimizelegibility = 450; const int CSSValueGeometricprecision = 451; const int CSSValueSrgb = 452; -const int CSSValueMini = 453; -const int CSSValueFloating = 454; -const int CSSValueApplication = 455; -const int CSSValueFullscreen = 456; -const int CSSValueAliceblue = 457; -const int CSSValueAntiquewhite = 458; -const int CSSValueAquamarine = 459; -const int CSSValueAzure = 460; -const int CSSValueBeige = 461; -const int CSSValueBisque = 462; -const int CSSValueBlanchedalmond = 463; -const int CSSValueBlueviolet = 464; -const int CSSValueBrown = 465; -const int CSSValueBurlywood = 466; -const int CSSValueCadetblue = 467; -const int CSSValueChartreuse = 468; -const int CSSValueChocolate = 469; -const int CSSValueCoral = 470; -const int CSSValueCornflowerblue = 471; -const int CSSValueCornsilk = 472; -const int CSSValueCrimson = 473; -const int CSSValueCyan = 474; -const int CSSValueDarkblue = 475; -const int CSSValueDarkcyan = 476; -const int CSSValueDarkgoldenrod = 477; -const int CSSValueDarkgray = 478; -const int CSSValueDarkgreen = 479; -const int CSSValueDarkgrey = 480; -const int CSSValueDarkkhaki = 481; -const int CSSValueDarkmagenta = 482; -const int CSSValueDarkolivegreen = 483; -const int CSSValueDarkorange = 484; -const int CSSValueDarkorchid = 485; -const int CSSValueDarkred = 486; -const int CSSValueDarksalmon = 487; -const int CSSValueDarkseagreen = 488; -const int CSSValueDarkslateblue = 489; -const int CSSValueDarkslategray = 490; -const int CSSValueDarkslategrey = 491; -const int CSSValueDarkturquoise = 492; -const int CSSValueDarkviolet = 493; -const int CSSValueDeeppink = 494; -const int CSSValueDeepskyblue = 495; -const int CSSValueDimgray = 496; -const int CSSValueDimgrey = 497; -const int CSSValueDodgerblue = 498; -const int CSSValueFirebrick = 499; -const int CSSValueFloralwhite = 500; -const int CSSValueForestgreen = 501; -const int CSSValueGainsboro = 502; -const int CSSValueGhostwhite = 503; -const int CSSValueGold = 504; -const int CSSValueGoldenrod = 505; -const int CSSValueGreenyellow = 506; -const int CSSValueHoneydew = 507; -const int CSSValueHotpink = 508; -const int CSSValueIndianred = 509; -const int CSSValueIndigo = 510; -const int CSSValueIvory = 511; -const int CSSValueKhaki = 512; -const int CSSValueLavender = 513; -const int CSSValueLavenderblush = 514; -const int CSSValueLawngreen = 515; -const int CSSValueLemonchiffon = 516; -const int CSSValueLightblue = 517; -const int CSSValueLightcoral = 518; -const int CSSValueLightcyan = 519; -const int CSSValueLightgoldenrodyellow = 520; -const int CSSValueLightgray = 521; -const int CSSValueLightgreen = 522; -const int CSSValueLightgrey = 523; -const int CSSValueLightpink = 524; -const int CSSValueLightsalmon = 525; -const int CSSValueLightseagreen = 526; -const int CSSValueLightskyblue = 527; -const int CSSValueLightslategray = 528; -const int CSSValueLightslategrey = 529; -const int CSSValueLightsteelblue = 530; -const int CSSValueLightyellow = 531; -const int CSSValueLimegreen = 532; -const int CSSValueLinen = 533; -const int CSSValueMagenta = 534; -const int CSSValueMediumaquamarine = 535; -const int CSSValueMediumblue = 536; -const int CSSValueMediumorchid = 537; -const int CSSValueMediumpurple = 538; -const int CSSValueMediumseagreen = 539; -const int CSSValueMediumslateblue = 540; -const int CSSValueMediumspringgreen = 541; -const int CSSValueMediumturquoise = 542; -const int CSSValueMediumvioletred = 543; -const int CSSValueMidnightblue = 544; -const int CSSValueMintcream = 545; -const int CSSValueMistyrose = 546; -const int CSSValueMoccasin = 547; -const int CSSValueNavajowhite = 548; -const int CSSValueOldlace = 549; -const int CSSValueOlivedrab = 550; -const int CSSValueOrangered = 551; -const int CSSValueOrchid = 552; -const int CSSValuePalegoldenrod = 553; -const int CSSValuePalegreen = 554; -const int CSSValuePaleturquoise = 555; -const int CSSValuePalevioletred = 556; -const int CSSValuePapayawhip = 557; -const int CSSValuePeachpuff = 558; -const int CSSValuePeru = 559; -const int CSSValuePink = 560; -const int CSSValuePlum = 561; -const int CSSValuePowderblue = 562; -const int CSSValueRosybrown = 563; -const int CSSValueRoyalblue = 564; -const int CSSValueSaddlebrown = 565; -const int CSSValueSalmon = 566; -const int CSSValueSandybrown = 567; -const int CSSValueSeagreen = 568; -const int CSSValueSeashell = 569; -const int CSSValueSienna = 570; -const int CSSValueSkyblue = 571; -const int CSSValueSlateblue = 572; -const int CSSValueSlategray = 573; -const int CSSValueSlategrey = 574; -const int CSSValueSnow = 575; -const int CSSValueSpringgreen = 576; -const int CSSValueSteelblue = 577; -const int CSSValueTan = 578; -const int CSSValueThistle = 579; -const int CSSValueTomato = 580; -const int CSSValueTurquoise = 581; -const int CSSValueViolet = 582; -const int CSSValueWheat = 583; -const int CSSValueWhitesmoke = 584; -const int CSSValueYellowgreen = 585; -const int CSSValueNonzero = 586; -const int CSSValueEvenodd = 587; -const int CSSValueAccumulate = 588; -const int CSSValueNew = 589; -const int CSSValueLinearrgb = 590; -const int CSSValueOptimizequality = 591; -const int CSSValueCrispedges = 592; -const int CSSValueButt = 593; -const int CSSValueMiter = 594; -const int CSSValueBevel = 595; -const int CSSValueBeforeEdge = 596; -const int CSSValueAfterEdge = 597; -const int CSSValueCentral = 598; -const int CSSValueTextBeforeEdge = 599; -const int CSSValueTextAfterEdge = 600; -const int CSSValueIdeographic = 601; -const int CSSValueAlphabetic = 602; -const int CSSValueHanging = 603; -const int CSSValueMathematical = 604; -const int CSSValueUseScript = 605; -const int CSSValueNoChange = 606; -const int CSSValueResetSize = 607; -const int CSSValueLrTb = 608; -const int CSSValueRlTb = 609; -const int CSSValueTbRl = 610; -const int CSSValueLr = 611; -const int CSSValueRl = 612; -const int CSSValueTb = 613; -const int numCSSValueKeywords = 614; +const int CSSValueFloating = 453; +const int CSSValueFullscreen = 454; +const int CSSValueMaximized = 455; +const int CSSValueMinimized = 456; +const int CSSValueWindowed = 457; +const int CSSValueAliceblue = 458; +const int CSSValueAntiquewhite = 459; +const int CSSValueAquamarine = 460; +const int CSSValueAzure = 461; +const int CSSValueBeige = 462; +const int CSSValueBisque = 463; +const int CSSValueBlanchedalmond = 464; +const int CSSValueBlueviolet = 465; +const int CSSValueBrown = 466; +const int CSSValueBurlywood = 467; +const int CSSValueCadetblue = 468; +const int CSSValueChartreuse = 469; +const int CSSValueChocolate = 470; +const int CSSValueCoral = 471; +const int CSSValueCornflowerblue = 472; +const int CSSValueCornsilk = 473; +const int CSSValueCrimson = 474; +const int CSSValueCyan = 475; +const int CSSValueDarkblue = 476; +const int CSSValueDarkcyan = 477; +const int CSSValueDarkgoldenrod = 478; +const int CSSValueDarkgray = 479; +const int CSSValueDarkgreen = 480; +const int CSSValueDarkgrey = 481; +const int CSSValueDarkkhaki = 482; +const int CSSValueDarkmagenta = 483; +const int CSSValueDarkolivegreen = 484; +const int CSSValueDarkorange = 485; +const int CSSValueDarkorchid = 486; +const int CSSValueDarkred = 487; +const int CSSValueDarksalmon = 488; +const int CSSValueDarkseagreen = 489; +const int CSSValueDarkslateblue = 490; +const int CSSValueDarkslategray = 491; +const int CSSValueDarkslategrey = 492; +const int CSSValueDarkturquoise = 493; +const int CSSValueDarkviolet = 494; +const int CSSValueDeeppink = 495; +const int CSSValueDeepskyblue = 496; +const int CSSValueDimgray = 497; +const int CSSValueDimgrey = 498; +const int CSSValueDodgerblue = 499; +const int CSSValueFirebrick = 500; +const int CSSValueFloralwhite = 501; +const int CSSValueForestgreen = 502; +const int CSSValueGainsboro = 503; +const int CSSValueGhostwhite = 504; +const int CSSValueGold = 505; +const int CSSValueGoldenrod = 506; +const int CSSValueGreenyellow = 507; +const int CSSValueHoneydew = 508; +const int CSSValueHotpink = 509; +const int CSSValueIndianred = 510; +const int CSSValueIndigo = 511; +const int CSSValueIvory = 512; +const int CSSValueKhaki = 513; +const int CSSValueLavender = 514; +const int CSSValueLavenderblush = 515; +const int CSSValueLawngreen = 516; +const int CSSValueLemonchiffon = 517; +const int CSSValueLightblue = 518; +const int CSSValueLightcoral = 519; +const int CSSValueLightcyan = 520; +const int CSSValueLightgoldenrodyellow = 521; +const int CSSValueLightgray = 522; +const int CSSValueLightgreen = 523; +const int CSSValueLightgrey = 524; +const int CSSValueLightpink = 525; +const int CSSValueLightsalmon = 526; +const int CSSValueLightseagreen = 527; +const int CSSValueLightskyblue = 528; +const int CSSValueLightslategray = 529; +const int CSSValueLightslategrey = 530; +const int CSSValueLightsteelblue = 531; +const int CSSValueLightyellow = 532; +const int CSSValueLimegreen = 533; +const int CSSValueLinen = 534; +const int CSSValueMagenta = 535; +const int CSSValueMediumaquamarine = 536; +const int CSSValueMediumblue = 537; +const int CSSValueMediumorchid = 538; +const int CSSValueMediumpurple = 539; +const int CSSValueMediumseagreen = 540; +const int CSSValueMediumslateblue = 541; +const int CSSValueMediumspringgreen = 542; +const int CSSValueMediumturquoise = 543; +const int CSSValueMediumvioletred = 544; +const int CSSValueMidnightblue = 545; +const int CSSValueMintcream = 546; +const int CSSValueMistyrose = 547; +const int CSSValueMoccasin = 548; +const int CSSValueNavajowhite = 549; +const int CSSValueOldlace = 550; +const int CSSValueOlivedrab = 551; +const int CSSValueOrangered = 552; +const int CSSValueOrchid = 553; +const int CSSValuePalegoldenrod = 554; +const int CSSValuePalegreen = 555; +const int CSSValuePaleturquoise = 556; +const int CSSValuePalevioletred = 557; +const int CSSValuePapayawhip = 558; +const int CSSValuePeachpuff = 559; +const int CSSValuePeru = 560; +const int CSSValuePink = 561; +const int CSSValuePlum = 562; +const int CSSValuePowderblue = 563; +const int CSSValueRosybrown = 564; +const int CSSValueRoyalblue = 565; +const int CSSValueSaddlebrown = 566; +const int CSSValueSalmon = 567; +const int CSSValueSandybrown = 568; +const int CSSValueSeagreen = 569; +const int CSSValueSeashell = 570; +const int CSSValueSienna = 571; +const int CSSValueSkyblue = 572; +const int CSSValueSlateblue = 573; +const int CSSValueSlategray = 574; +const int CSSValueSlategrey = 575; +const int CSSValueSnow = 576; +const int CSSValueSpringgreen = 577; +const int CSSValueSteelblue = 578; +const int CSSValueTan = 579; +const int CSSValueThistle = 580; +const int CSSValueTomato = 581; +const int CSSValueTurquoise = 582; +const int CSSValueViolet = 583; +const int CSSValueWheat = 584; +const int CSSValueWhitesmoke = 585; +const int CSSValueYellowgreen = 586; +const int CSSValueNonzero = 587; +const int CSSValueEvenodd = 588; +const int CSSValueAccumulate = 589; +const int CSSValueNew = 590; +const int CSSValueLinearrgb = 591; +const int CSSValueOptimizequality = 592; +const int CSSValueCrispedges = 593; +const int CSSValueButt = 594; +const int CSSValueMiter = 595; +const int CSSValueBevel = 596; +const int CSSValueBeforeEdge = 597; +const int CSSValueAfterEdge = 598; +const int CSSValueCentral = 599; +const int CSSValueTextBeforeEdge = 600; +const int CSSValueTextAfterEdge = 601; +const int CSSValueIdeographic = 602; +const int CSSValueAlphabetic = 603; +const int CSSValueHanging = 604; +const int CSSValueMathematical = 605; +const int CSSValueUseScript = 606; +const int CSSValueNoChange = 607; +const int CSSValueResetSize = 608; +const int CSSValueLrTb = 609; +const int CSSValueRlTb = 610; +const int CSSValueTbRl = 611; +const int CSSValueLr = 612; +const int CSSValueRl = 613; +const int CSSValueTb = 614; +const int numCSSValueKeywords = 615; const size_t maxCSSValueKeywordLength = 35; const char* getValueName(unsigned short id); diff --git a/src/3rdparty/webkit/WebCore/platform/qt/RenderThemeQt.cpp b/src/3rdparty/webkit/WebCore/platform/qt/RenderThemeQt.cpp index 0163adc..0a40342 100644 --- a/src/3rdparty/webkit/WebCore/platform/qt/RenderThemeQt.cpp +++ b/src/3rdparty/webkit/WebCore/platform/qt/RenderThemeQt.cpp @@ -932,7 +932,7 @@ ControlPart RenderThemeQt::initializeCommonQStyleOptions(QStyleOption& option, R case SearchFieldCancelButtonPart: { if (isPressed(o)) option.state |= QStyle::State_Sunken; - else if (result == PushButtonPart) + else if (result == PushButtonPart || result == ButtonPart) option.state |= QStyle::State_Raised; break; } diff --git a/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.cpp b/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.cpp index 2305c7f..e72af36 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.cpp +++ b/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.cpp @@ -454,7 +454,6 @@ QWebSettings::QWebSettings() d->attributes.insert(QWebSettings::LocalContentCanAccessRemoteUrls, false); d->attributes.insert(QWebSettings::LocalContentCanAccessFileUrls, true); d->attributes.insert(QWebSettings::AcceleratedCompositingEnabled, true); - d->attributes.insert(QWebSettings::WebGLEnabled, false); d->attributes.insert(QWebSettings::TiledBackingStoreEnabled, false); d->attributes.insert(QWebSettings::FrameFlatteningEnabled, false); d->offlineStorageDefaultQuota = 5 * 1024 * 1024; diff --git a/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.h b/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.h index caba0d5..d2e536e 100644 --- a/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.h +++ b/src/3rdparty/webkit/WebKit/qt/Api/qwebsettings.h @@ -70,7 +70,6 @@ public: DnsPrefetchEnabled, XSSAuditorEnabled, AcceleratedCompositingEnabled, - WebGLEnabled, SpatialNavigationEnabled, LocalContentCanAccessFileUrls, TiledBackingStoreEnabled, |