From bugzilla-daemon at webkit.org Sat Jul 1 02:48:41 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 09:48:41 +0000
Subject: [Webkit-unassigned] [Bug 258727] [WPE][GTK] Rename `python-gi` apt
dependency to `python3-gi`
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258727
--- Comment #2 from EWS ---
Committed 265683 at main (133de55cdecb):
Reviewed commits have been landed. Closing PR #15448 and removing active labels.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 02:48:44 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 09:48:44 +0000
Subject: [Webkit-unassigned] [Bug 258727] [WPE][GTK] Rename `python-gi` apt
dependency to `python3-gi`
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258727
EWS changed:
What |Removed |Added
----------------------------------------------------------------------------
Resolution|--- |FIXED
Status|NEW |RESOLVED
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 02:59:44 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 09:59:44 +0000
Subject: [Webkit-unassigned] [Bug 258752] ScrollerMac shouldn't use
hardcoded controlSize
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258752
--- Comment #1 from Luke ---
Pull request: https://github.com/WebKit/WebKit/pull/15475
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 05:11:28 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 12:11:28 +0000
Subject: [Webkit-unassigned] [Bug 258765] New: Rendering issue with resize
handle in dark mode
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258765
Bug ID: 258765
Summary: Rendering issue with resize handle in dark mode
Product: WebKit
Version: Safari 16
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: Layout and Rendering
Assignee: webkit-unassigned at lists.webkit.org
Reporter: luke at warlow.dev
CC: bfulgham at webkit.org, simon.fraser at apple.com,
zalan at apple.com
Created attachment 466891
--> https://bugs.webkit.org/attachment.cgi?id=466891&action=review
Screenshot of output of above URL
Load `data:text/html,
`
The resize handle paints with a dark colour against a dark background leading to poor contrast.
The scroll corner also incorrectly has a light border to it which is unexpected.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 05:12:16 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 12:12:16 +0000
Subject: [Webkit-unassigned] [Bug 258765] Rendering issue with resize handle
in dark mode
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258765
Luke changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |luke at warlow.dev
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 05:42:25 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 12:42:25 +0000
Subject: [Webkit-unassigned] [Bug 258482] scroll corner painting ignores
color-scheme when overflow scroll
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258482
Luke changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|scroll corner color ignores |scroll corner painting
|color-scheme when overflow |ignores color-scheme when
|scroll |overflow scroll
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 05:45:22 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 12:45:22 +0000
Subject: [Webkit-unassigned] [Bug 258482] scroll corner painting ignores
color-scheme when overflow scroll
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258482
--- Comment #3 from Luke ---
Pull request: https://github.com/WebKit/WebKit/pull/15476
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 06:28:14 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 13:28:14 +0000
Subject: [Webkit-unassigned] [Bug 258766] New: JSC doesn't thorw TypeError
when call Uint8Array without new
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258766
Bug ID: 258766
Summary: JSC doesn't thorw TypeError when call Uint8Array
without new
Product: WebKit
Version: WebKit Local Build
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: JavaScriptCore
Assignee: webkit-unassigned at lists.webkit.org
Reporter: yuhao.6218 at gmail.com
git commit id: 8cdb27dae2a958f4ad5ff00f4900a7c235835247
```
function opt(f) {
try{
return f(Uint8Array);
}catch(e){
print(e)
}
}
print(opt(opt))
print(opt(opt))
```
run args:
WebKitBuild/Debug/bin/jsc --useConcurrentJIT=0 --jitPolicyScale=0.001 test.js
program output:
TypeError: calling Uint8Array constructor without new is invalid
undefined
0,0,0
expected output:
TypeError: calling Uint8Array constructor without new is invalid
undefined
TypeError: calling Uint8Array constructor without new is invalid
undefined
At the last call to the `opt` function, `f` is `UInt8Array`. The engine need to throw an exception instead of creating the array object.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 06:42:05 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 13:42:05 +0000
Subject: [Webkit-unassigned] [Bug 258491] Flaky background-position test and
on window resize fail
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258491
Radar WebKit Bug Importer changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |webkit-bug-importer at group.a
| |pple.com
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 06:42:16 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 13:42:16 +0000
Subject: [Webkit-unassigned] [Bug 258491] Flaky background-position test and
on window resize fail
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258491
Radar WebKit Bug Importer changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |InRadar
--- Comment #6 from Radar WebKit Bug Importer ---
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 06:52:54 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 13:52:54 +0000
Subject: [Webkit-unassigned] [Bug 258767] New: [WPE] run-minibrowser: unit
test test_browser_name_default_with_cog_built is failing
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258767
Bug ID: 258767
Summary: [WPE] run-minibrowser: unit test
test_browser_name_default_with_cog_built is failing
Product: WebKit
Version: WebKit Nightly Build
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: New Bugs
Assignee: webkit-unassigned at lists.webkit.org
Reporter: dpino at igalia.com
Unit test test_browser_name_default_with_cog_built is producing the following error in the WPE-Release-Test bot:
```
[1057/2215] webkitpy.port.wpe_unittest.WPEPortTest.test_browser_name_default_with_cog_built failed:
Traceback (most recent call last):
File "/app/webkit/Tools/Scripts/webkitpy/port/wpe_unittest.py", line 94, in test_browser_name_default_with_cog_built
self.assertEqual(port.browser_name(), "cog")
AssertionError: 'minibrowser' != 'cog'
- minibrowser
+ cog
```
The reason is that environment variable WPE_BROWSER is set to 'minibrowser' in that host. The test should evaluate `port.browser_name()` on an empty environment.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 06:58:19 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 13:58:19 +0000
Subject: [Webkit-unassigned] [Bug 258767] [WPE] run-minibrowser: unit test
test_browser_name_default_with_cog_built is failing
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258767
Diego Pino changed:
What |Removed |Added
----------------------------------------------------------------------------
Assignee|webkit-unassigned at lists.web |dpino at igalia.com
|kit.org |
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 07:38:31 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 14:38:31 +0000
Subject: [Webkit-unassigned] [Bug 258768] New:
HTMLTableSectionElement.insertRow(0) / HTMLTableRowElement.insertCell(0) do
not behave correctly
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258768
Bug ID: 258768
Summary: HTMLTableSectionElement.insertRow(0) /
HTMLTableRowElement.insertCell(0) do not behave
correctly
Product: WebKit
Version: WebKit Nightly Build
Hardware: Unspecified
OS: Unspecified
Status: NEW
Keywords: BrowserCompat
Severity: Normal
Priority: P2
Component: DOM
Assignee: webkit-unassigned at lists.webkit.org
Reporter: ahmad.saleem792 at gmail.com
Hi Team,
While going through Blink's commit, I came across another failing test:
Failing Test Case (one based of test from Blink Commit): https://jsfiddle.net/4ethd8nm/show
Blink Commit: https://chromium.googlesource.com/chromium/blink/+/2f46be9abd9350909c03b95b2597ee164d1c38b8
Just wanted to raise so we can fix it in Safari as well, it is passing in Blink & Gecko already.
Thanks!
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 07:41:39 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 14:41:39 +0000
Subject: [Webkit-unassigned] [Bug 258769] New: Intermittent parallel build
failures related to GIR file
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258769
Bug ID: 258769
Summary: Intermittent parallel build failures related to GIR
file
Product: WebKit
Version: WebKit Local Build
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: CMake
Assignee: webkit-unassigned at lists.webkit.org
Reporter: jpalus at fastmail.com
Created attachment 466892
--> https://bugs.webkit.org/attachment.cgi?id=466892&action=review
Patch
Sometimes build fails with errors like:
[100%] Generating WPEWebKit-1.0.typelib
cd /tmp/B.0d8_p500/BUILD/wpewebkit-2.38.6/build-soup2/Source/WebKit && /usr/bin/g-ir-compiler --includedir=/tmp/B.0d8_p500/BUILD/wpewebkit-2.38.6/build-soup2 --output=/tmp/B.0d8_p500/BUILD/wp
ewebkit-2.38.6/build-soup2/WPEWebKit-1.0.typelib /tmp/B.0d8_p500/BUILD/wpewebkit-2.38.6/build-soup2/WPEWebKit-1.0.gir
error parsing file /tmp/B.0d8_p500/BUILD/wpewebkit-2.38.6/build-soup2/WPEWebKit-1.0.gir: Error on line 1 char 1: Document was empty or contained only whitespace
(see attached log)
While most recent occurrence of this issue is related to WPEWebKit, the same behavior was observed for "normal" WebKit as well. Mechanism in question is exactly the same in both.
The reason for the errors are multiple commands generating same GIR file executed in parallel.
See attached patch for more details and fix. Feel free to use it or not. Unfortunately it was not possible to create pull request as the baroque `git-webkit setup` script has hard dependency on keyring which I unfortunately cannot satisfy.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 07:42:04 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 14:42:04 +0000
Subject: [Webkit-unassigned] [Bug 258769] Intermittent parallel build
failures related to GIR file
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258769
--- Comment #1 from Jan Palus ---
Created attachment 466893
--> https://bugs.webkit.org/attachment.cgi?id=466893&action=review
Log
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 08:02:48 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 15:02:48 +0000
Subject: [Webkit-unassigned] [Bug 258770] New: Scrollbar-gutters don't
update when scrollbar-width value does
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258770
Bug ID: 258770
Summary: Scrollbar-gutters don't update when scrollbar-width
value does
Product: WebKit
Version: Safari 16
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: CSS
Assignee: webkit-unassigned at lists.webkit.org
Reporter: luke at warlow.dev
Currently scrollbar-gutters don't rerender when scrollbar-width updates. This will fix that.
Rerendering of scrollbars when scrollbar-width updates will be handled separately.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 08:03:30 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 15:03:30 +0000
Subject: [Webkit-unassigned] [Bug 258770] Scrollbar-gutters don't update
when scrollbar-width value does
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258770
Luke changed:
What |Removed |Added
----------------------------------------------------------------------------
Blocks| |167335, 231588
Referenced Bugs:
https://bugs.webkit.org/show_bug.cgi?id=167335
[Bug 167335] Implement scrollbar-gutter
https://bugs.webkit.org/show_bug.cgi?id=231588
[Bug 231588] [css-scrollbars-1] Implement "scrollbar-width" CSS property
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 08:03:30 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 15:03:30 +0000
Subject: [Webkit-unassigned] [Bug 167335] Implement scrollbar-gutter
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=167335
Luke changed:
What |Removed |Added
----------------------------------------------------------------------------
Depends on| |258770
Referenced Bugs:
https://bugs.webkit.org/show_bug.cgi?id=258770
[Bug 258770] Scrollbar-gutters don't update when scrollbar-width value does
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 08:03:30 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 15:03:30 +0000
Subject: [Webkit-unassigned] [Bug 231588] [css-scrollbars-1] Implement
"scrollbar-width" CSS property
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=231588
Luke changed:
What |Removed |Added
----------------------------------------------------------------------------
Depends on| |258770
Referenced Bugs:
https://bugs.webkit.org/show_bug.cgi?id=258770
[Bug 258770] Scrollbar-gutters don't update when scrollbar-width value does
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 08:03:35 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 15:03:35 +0000
Subject: [Webkit-unassigned] [Bug 257425] Correctly handle scrollbar-width
value changes
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=257425
Luke changed:
What |Removed |Added
----------------------------------------------------------------------------
Depends on| |258770
Referenced Bugs:
https://bugs.webkit.org/show_bug.cgi?id=258770
[Bug 258770] Scrollbar-gutters don't update when scrollbar-width value does
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 08:03:35 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 15:03:35 +0000
Subject: [Webkit-unassigned] [Bug 258770] Scrollbar-gutters don't update
when scrollbar-width value does
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258770
Luke changed:
What |Removed |Added
----------------------------------------------------------------------------
Blocks| |257425
Referenced Bugs:
https://bugs.webkit.org/show_bug.cgi?id=257425
[Bug 257425] Correctly handle scrollbar-width value changes
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 08:06:12 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 15:06:12 +0000
Subject: [Webkit-unassigned] [Bug 258770] Scrollbar gutters don't update
when scrollbar-width value does
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258770
Luke changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Scrollbar-gutters don't |Scrollbar gutters don't
|update when scrollbar-width |update when scrollbar-width
|value does |value does
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 08:07:18 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 15:07:18 +0000
Subject: [Webkit-unassigned] [Bug 258770] Scrollbar gutters don't update
when scrollbar-width value does
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258770
--- Comment #1 from Luke ---
Pull request: https://github.com/WebKit/WebKit/pull/15480
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 08:12:55 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 15:12:55 +0000
Subject: [Webkit-unassigned] [Bug 258770] Scrollbar gutters don't update
when scrollbar-width value does
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258770
Luke changed:
What |Removed |Added
----------------------------------------------------------------------------
See Also| |https://github.com/web-plat
| |form-tests/wpt/pull/40846
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 08:13:06 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 15:13:06 +0000
Subject: [Webkit-unassigned] [Bug 258726] navigator.permissions.query for
geolocation reporting wrong value
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258726
Chris Dumez changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |youennf at gmail.com
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 09:24:04 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 16:24:04 +0000
Subject: [Webkit-unassigned] [Bug 258492] CSS text-box-trim using content &
::before/after.
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258492
Radar WebKit Bug Importer changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |webkit-bug-importer at group.a
| |pple.com
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 09:24:16 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 16:24:16 +0000
Subject: [Webkit-unassigned] [Bug 258492] CSS text-box-trim using content &
::before/after.
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258492
Radar WebKit Bug Importer changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |InRadar
--- Comment #1 from Radar WebKit Bug Importer ---
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 10:32:10 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 17:32:10 +0000
Subject: [Webkit-unassigned] [Bug 258482] scroll corner painting ignores
color-scheme when overflow scroll
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258482
--- Comment #4 from EWS ---
Committed 265687 at main (4498c483beb9):
Reviewed commits have been landed. Closing PR #15476 and removing active labels.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 10:32:12 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 17:32:12 +0000
Subject: [Webkit-unassigned] [Bug 258482] scroll corner painting ignores
color-scheme when overflow scroll
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258482
EWS changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution|--- |FIXED
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 10:39:50 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 17:39:50 +0000
Subject: [Webkit-unassigned] [Bug 146517] Different color of border in
visited link
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=146517
Ahmad Saleem changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ahmad.saleem792 at gmail.com,
| |karlcow at apple.com
--- Comment #10 from Ahmad Saleem ---
WebKit ToT (265684 at main) seems to work fine but STP173 is still failing.
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 11:33:32 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 18:33:32 +0000
Subject: [Webkit-unassigned] [Bug 258732] [ Mac wk1 ]
fullscreen/full-screen-iframe-with-max-width-height.html times out after
user activation change
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258732
Bug 258732 depends on bug 258696, which changed state.
Bug 258696 Summary: Videos autoplay with sound on cnn.com pages after refresh in Safari
https://bugs.webkit.org/show_bug.cgi?id=258696
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution|--- |FIXED
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 11:39:21 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 18:39:21 +0000
Subject: [Webkit-unassigned] [Bug 258771] New: [LFC][Integration] Remove
LayoutState::m_viewportSize
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258771
Bug ID: 258771
Summary: [LFC][Integration] Remove LayoutState::m_viewportSize
Product: WebKit
Version: WebKit Nightly Build
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: Layout and Rendering
Assignee: webkit-unassigned at lists.webkit.org
Reporter: zalan at apple.com
CC: bfulgham at webkit.org, simon.fraser at apple.com,
zalan at apple.com
ssia
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 11:46:45 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 18:46:45 +0000
Subject: [Webkit-unassigned] [Bug 258771] [LFC][Integration] Remove
LayoutState::m_viewportSize
In-Reply-To:
References:
Message-ID:
https://bugs.webkit.org/show_bug.cgi?id=258771
zalan changed:
What |Removed |Added
----------------------------------------------------------------------------
Assignee|webkit-unassigned at lists.web |zalan at apple.com
|kit.org |
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
From bugzilla-daemon at webkit.org Sat Jul 1 11:50:18 2023
From: bugzilla-daemon at webkit.org (bugzilla-daemon at webkit.org)
Date: Sat, 01 Jul 2023 18:50:18 +0000
Subject: [Webkit-unassigned] [Bug 258772] New: Media Controls: Interaction
region on visionOS