WebKit Bugzilla
Attachment 360865 Details for
Bug 191303
: DumpRenderTree should report unknown options
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-191303-20190201182503.patch (text/plain), 3.47 KB, created by
darshan
on 2019-02-01 09:25:04 PST
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
darshan
Created:
2019-02-01 09:25:04 PST
Size:
3.47 KB
patch
obsolete
>Subversion Revision: 240715 >diff --git a/Tools/ChangeLog b/Tools/ChangeLog >index 9b48791eb108c0b3fb78af7d052d7b6618f23b98..7e569a1464865c6da5adcd37aba385197c8dc3d0 100644 >--- a/Tools/ChangeLog >+++ b/Tools/ChangeLog >@@ -1,3 +1,17 @@ >+2019-01-31 Darshan Kadu <dkadu@igalia.com> >+ >+ DumpRenderTree should report unknown options >+ https://bugs.webkit.org/show_bug.cgi?id=191303 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Added RELEASE_ASSERT for DumpRenderTree/TestOptions.cpp DumpRenderTree >+ to report unknown options. >+ Added dummy if conditions to pass tests on bot. >+ >+ * DumpRenderTree/TestOptions.cpp: >+ (TestOptions::TestOptions): >+ > 2019-01-30 Commit Queue <commit-queue@webkit.org> > > Unreviewed, rolling out r240708. >diff --git a/Tools/DumpRenderTree/TestOptions.cpp b/Tools/DumpRenderTree/TestOptions.cpp >index c926612b1b1604a83ce2603bcda88ce3983d358e..c5d3442a074a872f3cd0306297d038e5f480ab17 100644 >--- a/Tools/DumpRenderTree/TestOptions.cpp >+++ b/Tools/DumpRenderTree/TestOptions.cpp >@@ -75,7 +75,7 @@ TestOptions::TestOptions(const std::string& pathOrURL, const std::string& absolu > auto value = pairString.substr(equalsLocation + 1, pairEnd - (equalsLocation + 1)); > if (key == "enableAttachmentElement") > enableAttachmentElement = parseBooleanTestHeaderValue(value); >- if (key == "useAcceleratedDrawing") >+ else if (key == "useAcceleratedDrawing") > useAcceleratedDrawing = parseBooleanTestHeaderValue(value); > else if (key == "enableIntersectionObserver") > enableIntersectionObserver = parseBooleanTestHeaderValue(value); >@@ -111,6 +111,52 @@ TestOptions::TestOptions(const std::string& pathOrURL, const std::string& absolu > enableCSSLogical = parseBooleanTestHeaderValue(value); > else if (key == "internal:AdClickAttributionEnabled") > adClickAttributionEnabled = parseBooleanTestHeaderValue(value); >+ else if (key == "applicationManifest") >+ { } >+ else if (key =="experimental:CSSCustomPropertiesAndValuesEnabled") >+ { } >+ else if (key =="useFlexibleViewport") >+ { } >+ else if (key =="useThreadedScrolling") >+ { } >+ else if (key =="experimental:DarkModeCSSEnabled") >+ { } >+ else if (key =="experimental:CSSTypedOMEnabled") >+ { } >+ else if (key =="punchOutWhiteBackgrounds") >+ { } >+ else if (key =="enableEditableImages") >+ { } >+ else if (key =="useCharacterSelectionGranularity") >+ { } >+ else if (key =="spellCheckingDots") >+ { } >+ else if (key =="experimental:CSSPaintingAPIEnabled") >+ { } >+ else if (key =="experimental:PointerEventsEnabled") >+ { } >+ else if (key =="useMockScrollbars") >+ { } >+ else if (key =="ignoresViewportScaleLimits") >+ { } >+ else if (key =="shouldIgnoreMetaViewport") >+ { } >+ else if (key =="enableProcessSwapOnNavigation") >+ { } >+ else if (key =="runSingly") >+ { } >+ else if (key =="internal:WebAPIStatisticsEnabled") >+ { } >+ else if (key =="internal:SourceBufferChangeTypeEnabled") >+ { } >+ else if (key =="needsSiteSpecificQuirks") >+ { } >+ else if (key =="modernMediaControls") >+ { } >+ else if (key == "experimental:WebGL2Enabled") >+ { } >+ else >+ RELEASE_ASSERT(false); > pairStart = pairEnd + 1; > } > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 191303
:
358263
|
358456
|
360474
|
360733
|
360737
|
360738
|
360743
|
360746
|
360760
|
360762
|
360768
|
360769
|
360779
|
360865
|
360913
|
361201
|
361302
|
361683
|
361687
|
362238