Ignore:
Timestamp:
05/27/09 19:49:34 (3 years ago)
Author:
MichaelTempest
Message:

Item1667: Merge adjacent <sticky> regions - so that you can edit <sticky> regions that contain code (e.g. DirectedGraphPlugin code) in TMCE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/WysiwygPlugin/test/unit/WysiwygPlugin/TranslatorTests.pm

    r3984 r3985  
    16131613' 
    16141614    }, 
     1615        { 
     1616                exec => $HTML2TML, 
     1617                name => 'mergeStickyItem1667', 
     1618                html => <<'BLAH', 
     1619<div class="WYSIWYG_STICKY">Line 1</div> 
     1620<div class="WYSIWYG_STICKY">Line 2</div> 
     1621BLAH 
     1622                tml => "<sticky>Line 1\nLine 2</sticky>" 
     1623        }, 
     1624        { 
     1625                exec => $HTML2TML | $ROUNDTRIP, 
     1626                name => 'separateStickyRegions', 
     1627                html => <<'BLAH', 
     1628<div class="WYSIWYG_STICKY">Oranges</div> 
     1629<p></p> 
     1630<div class="WYSIWYG_STICKY">Apples</div> 
     1631BLAH 
     1632                tml => "<sticky>Oranges</sticky>\n\n<sticky>Apples</sticky>" 
     1633        }, 
    16151634    { 
    16161635        exec => $TML2HTML, 
Note: See TracChangeset for help on using the changeset viewer.