| Summary: | Add test for fix in https://bugs.webkit.org/show_bug.cgi?id=187922 | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Per Arne Vollan <pvollan> | ||||||
| Component: | WebCore Misc. | Assignee: | Per Arne Vollan <pvollan> | ||||||
| Status: | RESOLVED FIXED | ||||||||
| Severity: | Normal | CC: | bfulgham, darin, simon.fraser, webkit-bug-importer | ||||||
| Priority: | P2 | Keywords: | InRadar | ||||||
| Version: | WebKit Nightly Build | ||||||||
| Hardware: | Unspecified | ||||||||
| OS: | Unspecified | ||||||||
| Attachments: |
|
||||||||
|
Description
Per Arne Vollan
2018-07-23 14:34:48 PDT
Created attachment 348651 [details]
Patch
Thanks for reviewing! Created attachment 348817 [details]
Patch
Committed r235619: <https://trac.webkit.org/changeset/235619/webkit> Comment on attachment 348817 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=348817&action=review > Source/WebCore/testing/Internals.cpp:4724 > +unsigned long Internals::primaryScreenDisplayID() This should be "unsigned". IDL "unsigned long" corresponds to C++ "unsigned". > Source/WebCore/testing/Internals.h:738 > + unsigned long primaryScreenDisplayID(); "unsigned" > Source/WebCore/testing/Internals.idl:673 > + unsigned long primaryScreenDisplayID(); "unsigned" (In reply to Darin Adler from comment #6) > Comment on attachment 348817 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=348817&action=review > > > Source/WebCore/testing/Internals.cpp:4724 > > +unsigned long Internals::primaryScreenDisplayID() > > This should be "unsigned". IDL "unsigned long" corresponds to C++ "unsigned". > > > Source/WebCore/testing/Internals.h:738 > > + unsigned long primaryScreenDisplayID(); > > "unsigned" > > > Source/WebCore/testing/Internals.idl:673 > > + unsigned long primaryScreenDisplayID(); > > "unsigned" Thanks! I'll change this. Committed r235916: <https://trac.webkit.org/changeset/235916/webkit> |