Title: [265699] branches/safari-610.1-branch/Source/WebInspectorUI
- Revision
- 265699
- Author
- [email protected]
- Date
- 2020-08-14 12:48:47 -0700 (Fri, 14 Aug 2020)
Log Message
Cherry-pick r265597. rdar://problem/67084522
Web Inspector: REGRESSION(r259170): text inputs in box-shadow editor push sliders offscreen
https://bugs.webkit.org/show_bug.cgi?id=215436
Reviewed by Darin Adler.
* UserInterface/Views/BoxShadowEditor.js:
(WI.BoxShadowEditor.createInputRow):
Make sure the inputs are `type="text"` so that CSS is able to distinguish them from sliders.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@265597 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Modified Paths
Diff
Modified: branches/safari-610.1-branch/Source/WebInspectorUI/ChangeLog (265698 => 265699)
--- branches/safari-610.1-branch/Source/WebInspectorUI/ChangeLog 2020-08-14 19:48:45 UTC (rev 265698)
+++ branches/safari-610.1-branch/Source/WebInspectorUI/ChangeLog 2020-08-14 19:48:47 UTC (rev 265699)
@@ -1,3 +1,30 @@
+2020-08-14 Alan Coon <[email protected]>
+
+ Cherry-pick r265597. rdar://problem/67084522
+
+ Web Inspector: REGRESSION(r259170): text inputs in box-shadow editor push sliders offscreen
+ https://bugs.webkit.org/show_bug.cgi?id=215436
+
+ Reviewed by Darin Adler.
+
+ * UserInterface/Views/BoxShadowEditor.js:
+ (WI.BoxShadowEditor.createInputRow):
+ Make sure the inputs are `type="text"` so that CSS is able to distinguish them from sliders.
+
+
+ git-svn-id: https://svn.webkit.org/repository/webkit/trunk@265597 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+ 2020-08-12 Devin Rousso <[email protected]>
+
+ Web Inspector: REGRESSION(r259170): text inputs in box-shadow editor push sliders offscreen
+ https://bugs.webkit.org/show_bug.cgi?id=215436
+
+ Reviewed by Darin Adler.
+
+ * UserInterface/Views/BoxShadowEditor.js:
+ (WI.BoxShadowEditor.createInputRow):
+ Make sure the inputs are `type="text"` so that CSS is able to distinguish them from sliders.
+
2020-07-30 Nikita Vasilyev <[email protected]>
REGRESSION (r?): Web Inspector: Timelines: blue border below selected timeline when in edit mode
Modified: branches/safari-610.1-branch/Source/WebInspectorUI/UserInterface/Views/BoxShadowEditor.js (265698 => 265699)
--- branches/safari-610.1-branch/Source/WebInspectorUI/UserInterface/Views/BoxShadowEditor.js 2020-08-14 19:48:45 UTC (rev 265698)
+++ branches/safari-610.1-branch/Source/WebInspectorUI/UserInterface/Views/BoxShadowEditor.js 2020-08-14 19:48:47 UTC (rev 265699)
@@ -49,6 +49,7 @@
let dataElement = rowElement.appendChild(document.createElement("td"));
let inputElement = dataElement.appendChild(document.createElement("input"));
+ inputElement.type = "text";
inputElement.id = id;
return {rowElement, inputElement};
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes