Title: [265655] releases/WebKitGTK/webkit-2.30/Source/WebInspectorUI
- Revision
- 265655
- Author
- [email protected]
- Date
- 2020-08-13 23:39:01 -0700 (Thu, 13 Aug 2020)
Log Message
Merge r265597 - 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.
Modified Paths
Diff
Modified: releases/WebKitGTK/webkit-2.30/Source/WebInspectorUI/ChangeLog (265654 => 265655)
--- releases/WebKitGTK/webkit-2.30/Source/WebInspectorUI/ChangeLog 2020-08-14 06:38:57 UTC (rev 265654)
+++ releases/WebKitGTK/webkit-2.30/Source/WebInspectorUI/ChangeLog 2020-08-14 06:39:01 UTC (rev 265655)
@@ -1,3 +1,14 @@
+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-08-11 Nikita Vasilyev <[email protected]>
Web Inspector: Clicking on sortable Table headers should expand vertical borders
Modified: releases/WebKitGTK/webkit-2.30/Source/WebInspectorUI/UserInterface/Views/BoxShadowEditor.js (265654 => 265655)
--- releases/WebKitGTK/webkit-2.30/Source/WebInspectorUI/UserInterface/Views/BoxShadowEditor.js 2020-08-14 06:38:57 UTC (rev 265654)
+++ releases/WebKitGTK/webkit-2.30/Source/WebInspectorUI/UserInterface/Views/BoxShadowEditor.js 2020-08-14 06:39:01 UTC (rev 265655)
@@ -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