All Downloads are FREE. Search and download functionalities are using the official Maven repository.

static.codemirror.mode.xquery.test.testMultiAttr.js Maven / Gradle / Ivy

  $(document).ready(function(){
    module("testMultiAttr");
    test("test1", function() {
      expect(1);

      var expected = '<p a1="foo" a2="bar">hello world</p>';

      $("#sandbox").html('');
      $("#editor").html('

hello world

'); var editor = CodeMirror.fromTextArea($("#editor")[0]); var result = $(".CodeMirror-lines div div pre")[0].innerHTML; equal(result, expected); $("#editor").html(""); }); });




© 2015 - 2025 Weber Informatics LLC | Privacy Policy