| 5 | #include "WebDebug.h" |
| 6 | |
| 7 | void WriteStandardHeader(WebDebugConnection * connection, const char * title) |
| 8 | { |
| 9 | connection->WriteString( |
| 10 | "<!DOCTYPE html>\n" |
| 11 | "<html lang=\"en\">\n" |
| 12 | " <head>\n" |
| 13 | " <meta charset=\"utf-8\">\n" |
| 14 | " <link href=\"css/bootstrap.min.css\" rel=\"stylesheet\">\n" |
| 15 | ); |
| 16 | connection->WriteF(" <title>%s</title>\n", title); |
| 17 | connection->WriteString(" </head><body>\n"); |
| 18 | } |
| 19 | |
| 20 | void WriteStandardFooter(WebDebugConnection * connection, const char * user_script) |
| 21 | { |
no test coverage detected