JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
run "pending spec changes" tests too
[peach-html5-editor.git] / test.coffee
index 2d6f715..6ebcaa3 100644 (file)
@@ -2697,7 +2697,7 @@ tests = [
        }, {
                name: "template.dat #108"
                html: "<template><a><table><a>"
-               expected: "| <html>\n|   <head>\n|     <template>\n|       content\n|         <a>\n|           <a>\n|           <table>\n|   <body>"
+               expected: "| <html>\n|   <head>\n|     <template>\n|       content\n|         <a>\n|           <a>\n|           <table>\n|   <body>\n"
        }, {
                name: "tests10.dat #1"
                html: "<!DOCTYPE html><svg></svg>"
@@ -7953,7 +7953,7 @@ serialize_els = (els, prefix = '| ') ->
                                attr_keys.sort() # TODO this should be "lexicographically by UTF-16 code unit"
                                for k in attr_keys
                                        ret += "#{prefix}  #{k}=\"#{el.attrs[k]}\"\n"
-                               if el.name is 'template' # ?check ns
+                               if el.name is 'template' and el.namespace is wheic.NS_HTML
                                        ret += "#{prefix}  content\n"
                                        ret += serialize_els el.children, "#{prefix}    "
                                else
@@ -7977,9 +7977,6 @@ test_parser = (args) ->
        if args.fragment? # hide fragment tests for now
                test_results.fragment += 1
                return
-       if args.name.substr(0, 20) is "pending-spec-changes" # hide for now
-               test_results.pending += 1
-               return
        wheic.debug_log_reset()
        parse_errors = []
        args.error_cb = (i) ->
@@ -8006,7 +8003,7 @@ test_parser = (args) ->
                test_results.passed += 1
                # console.log "passed \"#{args.name}\""
 test_summary = ->
-       console.log "Tests passed: #{test_results.passed}, Failed: #{test_results.failed}, ignored: #{test_results.fragment}"
+       console.log "Tests passed: #{test_results.passed}, Failed: #{test_results.failed}, fragment: #{test_results.fragment}"
 
 
 next_test = 0