Closed
Bug 1136567
Opened 11 years ago
Closed 11 years ago
(CopyPasteTest) Marionette test for selection carets' positions after changing orientation of device
Categories
(Core :: DOM: Selection, defect)
Tracking
()
RESOLVED
FIXED
mozilla39
| Tracking | Status | |
|---|---|---|
| firefox39 | --- | fixed |
People
(Reporter: chenpighead, Assigned: chenpighead)
References
Details
Attachments
(1 file, 4 obsolete files)
Test case for Bug 1094072
| Assignee | ||
Updated•11 years ago
|
Assignee: nobody → jeremychen
| Assignee | ||
Updated•11 years ago
|
Blocks: CopyPasteTest
| Assignee | ||
Comment 1•11 years ago
|
||
Attachment #8568997 -
Flags: review?(dburns)
| Assignee | ||
Updated•11 years ago
|
Attachment #8568997 -
Flags: review?(dburns)
| Assignee | ||
Comment 2•11 years ago
|
||
Remove unnecessary style settings.
Attachment #8568997 -
Attachment is obsolete: true
Attachment #8569001 -
Flags: review?(dburns)
| Assignee | ||
Comment 3•11 years ago
|
||
Comment on attachment 8569001 [details] [diff] [review]
Marionette test for selection carets' positions after changing orientation of device. r=dburns (v2)
When we run test on desktop browser, set_orientation will cause "Unable to set screen orientation" exception. Need to find a way to skip orientation setting while running tests on browser.
Attachment #8569001 -
Flags: review?(dburns)
| Assignee | ||
Comment 4•11 years ago
|
||
Skip running test on browser since set_orientation only works on B2G.
Attachment #8569001 -
Attachment is obsolete: true
| Assignee | ||
Comment 5•11 years ago
|
||
Attachment #8569696 -
Attachment is obsolete: true
| Assignee | ||
Updated•11 years ago
|
Attachment #8569700 -
Flags: review?(dburns)
Comment 6•11 years ago
|
||
Comment on attachment 8569700 [details] [diff] [review]
Marionette test for selection carets' positions after changing orientation of device. r=dburns (v3)
Review of attachment 8569700 [details] [diff] [review]:
-----------------------------------------------------------------
r+ with the change
Also make sure you rebase as bug 1107336 has changed the imports in this file
::: layout/base/tests/marionette/test_selectioncarets_multiplerange.py
@@ +143,5 @@
> + '''Bug 1094072
> + If positions of carets are updated correctly, they should be draggable.
> + '''
> + # Skip running test on browser since set_orientation only works on B2G
> + if self.marionette.execute_script('return SpecialPowers.Services.appinfo.name;') != 'B2G':
Instead of using special powers do
if not self.marionette.session_capabilities['rotatable']:
Attachment #8569700 -
Flags: review?(dburns) → review+
| Assignee | ||
Comment 7•11 years ago
|
||
Rebase. Use marionette.session_capabilities instead of special powers.
Attachment #8569700 -
Attachment is obsolete: true
Attachment #8571174 -
Flags: review+
| Assignee | ||
Comment 8•11 years ago
|
||
| Assignee | ||
Updated•11 years ago
|
Keywords: checkin-needed
Comment 9•11 years ago
|
||
Keywords: checkin-needed
Status: NEW → RESOLVED
Closed: 11 years ago
status-firefox39:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla39
You need to log in
before you can comment on or make changes to this bug.
Description
•