@@ -659,6 +659,11 @@ public void GenerateKeyPressEventEvenWhenElementPreventsDefault()
659
659
[ IgnoreBrowser ( Browser . WindowsPhone , "Cannot type on contentEditable with synthetic events" ) ]
660
660
public void TypingIntoAnIFrameWithContentEditableOrDesignModeSet ( )
661
661
{
662
+ if ( TestUtilities . IsMarionette ( driver ) )
663
+ {
664
+ Assert . Ignore ( "Marionette does not ContentEditable." ) ;
665
+ }
666
+
662
667
driver . Url = richTextPage ;
663
668
664
669
driver . SwitchTo ( ) . Frame ( "editFrame" ) ;
@@ -683,6 +688,11 @@ public void TypingIntoAnIFrameWithContentEditableOrDesignModeSet()
683
688
[ IgnoreBrowser ( Browser . WindowsPhone , "Cannot type on contentEditable with synthetic events" ) ]
684
689
public void NonPrintableCharactersShouldWorkWithContentEditableOrDesignModeSet ( )
685
690
{
691
+ if ( TestUtilities . IsMarionette ( driver ) )
692
+ {
693
+ Assert . Ignore ( "Marionette does not ContentEditable." ) ;
694
+ }
695
+
686
696
driver . Url = richTextPage ;
687
697
688
698
// not tested on mac
@@ -731,6 +741,11 @@ public void ShouldBeAbleToTypeOnANumberInputField()
731
741
[ IgnoreBrowser ( Browser . WindowsPhone , "Cannot type on contentEditable with synthetic events" ) ]
732
742
public void ShouldBeAbleToTypeIntoEmptyContentEditableElement ( )
733
743
{
744
+ if ( TestUtilities . IsMarionette ( driver ) )
745
+ {
746
+ Assert . Ignore ( "Marionette does not ContentEditable." ) ;
747
+ }
748
+
734
749
driver . Url = readOnlyPage ;
735
750
IWebElement editable = driver . FindElement ( By . Id ( "content-editable" ) ) ;
736
751
@@ -747,6 +762,11 @@ public void ShouldBeAbleToTypeIntoEmptyContentEditableElement()
747
762
[ Test ]
748
763
public void ShouldBeAbleToTypeIntoContentEditableElementWithExistingValue ( )
749
764
{
765
+ if ( TestUtilities . IsMarionette ( driver ) )
766
+ {
767
+ Assert . Ignore ( "Marionette does not ContentEditable." ) ;
768
+ }
769
+
750
770
driver . Url = readOnlyPage ;
751
771
IWebElement editable = driver . FindElement ( By . Id ( "content-editable" ) ) ;
752
772
0 commit comments