File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change
1
+ 2012-07-19 Tony Chang <
[email protected] >
2
+
3
+ Unreviewed, rolling out r123036.
4
+ http://trac.webkit.org/changeset/123036
5
+ https://bugs.webkit.org/show_bug.cgi?id=91555
6
+
7
+ Triggers some DCHECKs in Chromium browser_tests
8
+
9
+ * public/WebTextInputType.h:
10
+ * src/WebViewImpl.cpp:
11
+ (WebKit::WebViewImpl::textInputType):
12
+
1
13
2012-07-19 Joshua Bell <
[email protected] >
2
14
3
15
Roll out r121610 and r122487 which may have been causing flaky crashes
Original file line number Diff line number Diff line change @@ -54,10 +54,6 @@ enum WebTextInputType {
54
54
WebTextInputTypeMonth,
55
55
WebTextInputTypeTime,
56
56
WebTextInputTypeWeek,
57
- WebTextInputTypeTextArea,
58
-
59
- // Input caret is in a contenteditable node (not an INPUT field).
60
- WebTextInputTypeContentEditable,
61
57
};
62
58
63
59
} // namespace WebKit
Original file line number Diff line number Diff line change @@ -2071,11 +2071,11 @@ WebTextInputType WebViewImpl::textInputType()
2071
2071
if (textarea->readOnly () || textarea->disabled ())
2072
2072
return WebTextInputTypeNone;
2073
2073
2074
- return WebTextInputTypeTextArea ;
2074
+ return WebTextInputTypeText ;
2075
2075
}
2076
2076
2077
2077
if (node->shouldUseInputMethod ())
2078
- return WebTextInputTypeContentEditable ;
2078
+ return WebTextInputTypeText ;
2079
2079
2080
2080
return WebTextInputTypeNone;
2081
2081
}
You can’t perform that action at this time.
0 commit comments