@@ -659,6 +659,11 @@ public void GenerateKeyPressEventEvenWhenElementPreventsDefault()
659659 [ IgnoreBrowser ( Browser . WindowsPhone , "Cannot type on contentEditable with synthetic events" ) ]
660660 public void TypingIntoAnIFrameWithContentEditableOrDesignModeSet ( )
661661 {
662+ if ( TestUtilities . IsMarionette ( driver ) )
663+ {
664+ Assert . Ignore ( "Marionette does not ContentEditable." ) ;
665+ }
666+
662667 driver . Url = richTextPage ;
663668
664669 driver . SwitchTo ( ) . Frame ( "editFrame" ) ;
@@ -683,6 +688,11 @@ public void TypingIntoAnIFrameWithContentEditableOrDesignModeSet()
683688 [ IgnoreBrowser ( Browser . WindowsPhone , "Cannot type on contentEditable with synthetic events" ) ]
684689 public void NonPrintableCharactersShouldWorkWithContentEditableOrDesignModeSet ( )
685690 {
691+ if ( TestUtilities . IsMarionette ( driver ) )
692+ {
693+ Assert . Ignore ( "Marionette does not ContentEditable." ) ;
694+ }
695+
686696 driver . Url = richTextPage ;
687697
688698 // not tested on mac
@@ -731,6 +741,11 @@ public void ShouldBeAbleToTypeOnANumberInputField()
731741 [ IgnoreBrowser ( Browser . WindowsPhone , "Cannot type on contentEditable with synthetic events" ) ]
732742 public void ShouldBeAbleToTypeIntoEmptyContentEditableElement ( )
733743 {
744+ if ( TestUtilities . IsMarionette ( driver ) )
745+ {
746+ Assert . Ignore ( "Marionette does not ContentEditable." ) ;
747+ }
748+
734749 driver . Url = readOnlyPage ;
735750 IWebElement editable = driver . FindElement ( By . Id ( "content-editable" ) ) ;
736751
@@ -747,6 +762,11 @@ public void ShouldBeAbleToTypeIntoEmptyContentEditableElement()
747762 [ Test ]
748763 public void ShouldBeAbleToTypeIntoContentEditableElementWithExistingValue ( )
749764 {
765+ if ( TestUtilities . IsMarionette ( driver ) )
766+ {
767+ Assert . Ignore ( "Marionette does not ContentEditable." ) ;
768+ }
769+
750770 driver . Url = readOnlyPage ;
751771 IWebElement editable = driver . FindElement ( By . Id ( "content-editable" ) ) ;
752772
0 commit comments