File tree 4 files changed +63
-13
lines changed
fixtures/dom/src/components/fixtures/text-inputs
packages/react-dom/src/client
4 files changed +63
-13
lines changed Original file line number Diff line number Diff line change
1
+ import Fixture from '../../Fixture' ;
2
+
3
+ const React = window . React ;
4
+
5
+ class ReplaceEmailInput extends React . Component {
6
+ state = {
7
+ formSubmitted : false ,
8
+ } ;
9
+
10
+ render ( ) {
11
+ return (
12
+ < Fixture >
13
+ < form
14
+ className = "control-box"
15
+ onSubmit = { event => {
16
+ event . preventDefault ( ) ;
17
+ this . setState ( { formSubmitted : true } ) ;
18
+ } } >
19
+ < fieldset >
20
+ < legend > Email</ legend >
21
+ { ! this . state . formSubmitted ? (
22
+ < input type = "email" />
23
+ ) : (
24
+ < input type = "text" disabled = { true } />
25
+ ) }
26
+ </ fieldset >
27
+ </ form >
28
+ </ Fixture >
29
+ ) ;
30
+ }
31
+ }
32
+
33
+ export default ReplaceEmailInput ;
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import Fixture from '../../Fixture';
2
2
import FixtureSet from '../../FixtureSet' ;
3
3
import TestCase from '../../TestCase' ;
4
4
import InputTestCase from './InputTestCase' ;
5
+ import ReplaceEmailInput from './ReplaceEmailInput' ;
5
6
6
7
const React = window . React ;
7
8
@@ -110,6 +111,21 @@ class TextInputFixtures extends React.Component {
110
111
< InputTestCase type = "url" defaultValue = "" />
111
112
</ TestCase >
112
113
114
+ < TestCase
115
+ title = "Replacing email input with text disabled input"
116
+ relatedIssues = "12062" >
117
+ < TestCase . Steps >
118
+
119
+ < li > Press enter</ li >
120
+ </ TestCase . Steps >
121
+
122
+ < TestCase . ExpectedResult >
123
+ There should be no selection-related error in the console.
124
+ </ TestCase . ExpectedResult >
125
+
126
+ < ReplaceEmailInput />
127
+ </ TestCase >
128
+
113
129
< TestCase title = "All inputs" description = "General test of all inputs" >
114
130
< InputTestCase type = "text" defaultValue = "Text" />
115
131
< InputTestCase type = "email" defaultValue = "[email protected] " />
Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ export function hasSelectionCapabilities(elem) {
26
26
const nodeName = elem && elem . nodeName && elem . nodeName . toLowerCase ( ) ;
27
27
return (
28
28
nodeName &&
29
- ( ( nodeName === 'input' && elem . type === 'text' ) ||
29
+ ( ( nodeName === 'input' &&
30
+ ( elem . type === 'text' || elem . type === 'email' || elem . type === 'tel' ) ) ||
30
31
nodeName === 'textarea' ||
31
32
elem . contentEditable === 'true' )
32
33
) ;
Original file line number Diff line number Diff line change 46
46
"filename" : " react-dom.development.js" ,
47
47
"bundleType" : " UMD_DEV" ,
48
48
"packageName" : " react-dom" ,
49
- "size" : 591035 ,
50
- "gzip" : 138248
49
+ "size" : 591085 ,
50
+ "gzip" : 138261
51
51
},
52
52
{
53
53
"filename" : " react-dom.production.min.js" ,
54
54
"bundleType" : " UMD_PROD" ,
55
55
"packageName" : " react-dom" ,
56
- "size" : 96636 ,
57
- "gzip" : 31413
56
+ "size" : 96672 ,
57
+ "gzip" : 31416
58
58
},
59
59
{
60
60
"filename" : " react-dom.development.js" ,
61
61
"bundleType" : " NODE_DEV" ,
62
62
"packageName" : " react-dom" ,
63
- "size" : 575044 ,
64
- "gzip" : 134405
63
+ "size" : 575094 ,
64
+ "gzip" : 134415
65
65
},
66
66
{
67
67
"filename" : " react-dom.production.min.js" ,
68
68
"bundleType" : " NODE_PROD" ,
69
69
"packageName" : " react-dom" ,
70
- "size" : 95362 ,
71
- "gzip" : 30593
70
+ "size" : 95398 ,
71
+ "gzip" : 30619
72
72
},
73
73
{
74
74
"filename" : " ReactDOM-dev.js" ,
75
75
"bundleType" : " FB_DEV" ,
76
76
"packageName" : " react-dom" ,
77
- "size" : 594192 ,
78
- "gzip" : 136733
77
+ "size" : 594248 ,
78
+ "gzip" : 136750
79
79
},
80
80
{
81
81
"filename" : " ReactDOM-prod.js" ,
82
82
"bundleType" : " FB_PROD" ,
83
83
"packageName" : " react-dom" ,
84
- "size" : 278297 ,
85
- "gzip" : 53015
84
+ "size" : 278353 ,
85
+ "gzip" : 53028
86
86
},
87
87
{
88
88
"filename" : " react-dom-test-utils.development.js" ,
You can’t perform that action at this time.
0 commit comments