summaryrefslogtreecommitdiffstats
path: root/editor/libeditor/tests/file_bug795418-2.sjs
blob: 59aecd6f95d4b7943673d04b03d332f9dbc03050 (plain)
1
2
3
4
5
6
7
8
9
10
// SJS file for test_bug795418-2.html
"use strict";

function handleRequest(request, response) {
  response.setHeader("Cache-Control", "no-cache", false);
  response.setHeader("Content-Type", "application/xhtml+xml", false);
  response.write(
    "<html contenteditable='' xmlns='http://www.w3.org/1999/xhtml'><span>AB</span></html>"
  );
}