<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output method="html" version="1.0" encoding="UTF-8"
- indent="yes" />
- <xsl:template match="/">
- <html>
- <STYLE type="text/css">
- @import "tests.css";
- </STYLE>
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+ <xsl:output method="html" version="1.0" encoding="UTF-8"
+ indent="yes" />
+ <xsl:template match="/">
+ <html>
+ <STYLE type="text/css">
+ @import "tests.css";
+ </STYLE>
- <body>
- <div id="testcasepage">
- <div id="title">
- <table>
- <tr>
- <td>
- <h1>Test Cases</h1>
- </td>
- </tr>
- </table>
- </div>
- <div id="suites">
- <table>
- <tr>
- <th>Test Suite</th>
- <th>Total</th>
- <th>Auto</th>
- <th>Manual</th>
- </tr>
- <tr>
- <td>
- Total
- </td>
- <td>
- <xsl:value-of select="count(test_definition/suite/set//testcase)" />
- </td>
- <td>
- <xsl:value-of
- select="count(test_definition/suite/set//testcase[@execution_type = 'auto'])" />
- </td>
- <td>
- <xsl:value-of
- select="count(test_definition/suite/set//testcase[@execution_type != 'auto'])" />
- </td>
- </tr>
- <xsl:for-each select="test_definition/suite">
- <tr>
- <td>
- <xsl:value-of select="@name" />
- </td>
- <td>
- <xsl:value-of select="count(set//testcase)" />
- </td>
- <td>
- <xsl:value-of select="count(set/testcase[@execution_type = 'auto'])" />
- </td>
- <td>
- <xsl:value-of select="count(set/testcase[@execution_type != 'auto'])" />
- </td>
- </tr>
- </xsl:for-each>
- </table>
- </div>
- <div id="title">
- <table>
- <tr>
- <td class="title">
- <h1>Detailed Test Cases</h1>
- </td>
- </tr>
- </table>
- </div>
- <div id="cases">
- <xsl:for-each select="test_definition/suite">
- <xsl:sort select="@name" />
- <p>
- Test Suite:
- <xsl:value-of select="@name" />
- </p>
- <table>
- <tr>
- <th>Case_ID</th>
- <th>Purpose</th>
- <th>Type</th>
- <th>Component</th>
- <th>Execution Type</th>
- <th>Description</th>
- <th>Specification</th>
- </tr>
- <xsl:for-each select=".//set">
- <xsl:sort select="@name" />
- <tr>
- <td colspan="7">
- Test Set:
- <xsl:value-of select="@name" />
- </td>
- </tr>
- <xsl:for-each select=".//testcase">
- <xsl:sort select="@id" />
- <tr>
- <td>
- <xsl:value-of select="@id" />
- </td>
- <td>
- <xsl:value-of select="@purpose" />
- </td>
- <td>
- <xsl:value-of select="@type" />
- </td>
- <td>
- <xsl:value-of select="@component" />
- </td>
- <td>
- <xsl:value-of select="@execution_type" />
- </td>
- <td>
- <p>
- Pre_condition:
- <xsl:value-of select=".//description/pre_condition" />
- </p>
- <p>
- Post_condition:
- <xsl:value-of select=".//description/post_condition" />
- </p>
- <p>
- Test Script Entry:
- <xsl:value-of select=".//description/test_script_entry" />
- </p>
- <p>
- Steps:
- <p />
- <xsl:for-each select=".//description/steps/step">
- <xsl:sort select="@order" />
- Step
- <xsl:value-of select="@order" />
- :
- <xsl:value-of select="./step_desc" />
- ;
- <p />
- Expected Result:
- <xsl:value-of select="./expected" />
- <p />
- </xsl:for-each>
- </p>
- </td>
- <td>
- <xsl:call-template name="br-replace">
- <xsl:with-param name="word" select=".//spec" />
- </xsl:call-template>
- </td>
- </tr>
- </xsl:for-each>
- </xsl:for-each>
- </table>
- </xsl:for-each>
- </div>
- </div>
- </body>
- </html>
- </xsl:template>
- <xsl:template name="br-replace">
- <xsl:param name="word" />
- <xsl:variable name="cr">
- <xsl:text>
+ <body>
+ <div id="testcasepage">
+ <div id="title">
+ <table>
+ <tr>
+ <td>
+ <h1>Test Cases</h1>
+ </td>
+ </tr>
+ </table>
+ </div>
+ <div id="suites">
+ <table>
+ <tr>
+ <th>Test Suite</th>
+ <th>Total</th>
+ <th>Auto</th>
+ <th>Manual</th>
+ </tr>
+ <tr>
+ <td>
+ Total
+ </td>
+ <td>
+ <xsl:value-of select="count(test_definition/suite/set//testcase)" />
+ </td>
+ <td>
+ <xsl:value-of
+ select="count(test_definition/suite/set//testcase[@execution_type = 'auto'])" />
+ </td>
+ <td>
+ <xsl:value-of
+ select="count(test_definition/suite/set//testcase[@execution_type != 'auto'])" />
+ </td>
+ </tr>
+ <xsl:for-each select="test_definition/suite">
+ <tr>
+ <td>
+ <xsl:value-of select="@name" />
+ </td>
+ <td>
+ <xsl:value-of select="count(set//testcase)" />
+ </td>
+ <td>
+ <xsl:value-of select="count(set/testcase[@execution_type = 'auto'])" />
+ </td>
+ <td>
+ <xsl:value-of select="count(set/testcase[@execution_type != 'auto'])" />
+ </td>
+ </tr>
+ </xsl:for-each>
+ </table>
+ </div>
+ <div id="title">
+ <table>
+ <tr>
+ <td class="title">
+ <h1>Detailed Test Cases</h1>
+ </td>
+ </tr>
+ </table>
+ </div>
+ <div id="cases">
+ <xsl:for-each select="test_definition/suite">
+ <xsl:sort select="@name" />
+ <p>
+ Test Suite:
+ <xsl:value-of select="@name" />
+ </p>
+ <table>
+ <tr>
+ <th>Case_ID</th>
+ <th>Purpose</th>
+ <th>Type</th>
+ <th>Component</th>
+ <th>Execution Type</th>
+ <th>Description</th>
+ <th>Specification</th>
+ </tr>
+ <xsl:for-each select=".//set">
+ <xsl:sort select="@name" />
+ <tr>
+ <td colspan="7">
+ Test Set:
+ <xsl:value-of select="@name" />
+ </td>
+ </tr>
+ <xsl:for-each select=".//testcase">
+ <xsl:sort select="@id" />
+ <tr>
+ <td>
+ <xsl:value-of select="@id" />
+ </td>
+ <td>
+ <xsl:value-of select="@purpose" />
+ </td>
+ <td>
+ <xsl:value-of select="@type" />
+ </td>
+ <td>
+ <xsl:value-of select="@component" />
+ </td>
+ <td>
+ <xsl:value-of select="@execution_type" />
+ </td>
+ <td>
+ <p>
+ Pre_condition:
+ <xsl:value-of select=".//description/pre_condition" />
+ </p>
+ <p>
+ Post_condition:
+ <xsl:value-of select=".//description/post_condition" />
+ </p>
+ <p>
+ Test Script Entry:
+ <xsl:value-of select=".//description/test_script_entry" />
+ </p>
+ <p>
+ Steps:
+ <p />
+ <xsl:for-each select=".//description/steps/step">
+ <xsl:sort select="@order" />
+ Step
+ <xsl:value-of select="@order" />
+ :
+ <xsl:value-of select="./step_desc" />
+ ;
+ <p />
+ Expected Result:
+ <xsl:value-of select="./expected" />
+ <p />
+ </xsl:for-each>
+ </p>
+ </td>
+ <td>
+ <xsl:call-template name="br-replace">
+ <xsl:with-param name="word" select=".//spec" />
+ </xsl:call-template>
+ </td>
+ </tr>
+ </xsl:for-each>
+ </xsl:for-each>
+ </table>
+ </xsl:for-each>
+ </div>
+ </div>
+ </body>
+ </html>
+ </xsl:template>
+ <xsl:template name="br-replace">
+ <xsl:param name="word" />
+ <xsl:variable name="cr">
+ <xsl:text>
</xsl:text>
- </xsl:variable>
- <xsl:choose>
- <xsl:when test="contains($word,$cr)">
- <xsl:value-of select="substring-before($word,$cr)" />
- <br />
- <xsl:call-template name="br-replace">
- <xsl:with-param name="word" select="substring-after($word,$cr)" />
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="$word" />
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
+ </xsl:variable>
+ <xsl:choose>
+ <xsl:when test="contains($word,$cr)">
+ <xsl:value-of select="substring-before($word,$cr)" />
+ <br />
+ <xsl:call-template name="br-replace">
+ <xsl:with-param name="word" select="substring-after($word,$cr)" />
+ </xsl:call-template>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$word" />
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
</xsl:stylesheet>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output method="html" version="1.0" encoding="UTF-8"
- indent="yes" />
- <xsl:template match="/">
- <html>
- <STYLE type="text/css">
- @import "tests.css";
- </STYLE>
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+ <xsl:output method="html" version="1.0" encoding="UTF-8"
+ indent="yes" />
+ <xsl:template match="/">
+ <html>
+ <STYLE type="text/css">
+ @import "tests.css";
+ </STYLE>
- <body>
- <div id="testcasepage">
- <div id="title">
- <table>
- <tr>
- <td>
- <h1>Test Report</h1>
- </td>
- </tr>
- </table>
- </div>
- <div id="device">
- <table>
- <tr>
- <th colspan="2">Device Information</th>
- </tr>
- <tr>
- <td>Device Name</td>
- <td>
- <xsl:value-of select="test_definition/environment/@device_name" />
- </td>
- </tr>
- <tr>
- <td>Device Model</td>
- <td>
- <xsl:value-of select="test_definition/environment/@device_model" />
- </td>
- </tr>
- <tr>
- <td>OS Version</td>
- <td>
- <xsl:value-of select="test_definition/environment/@os_version" />
- </td>
- </tr>
- <tr>
- <td>Device ID</td>
- <td>
- <xsl:value-of select="test_definition/environment/@device_id" />
- </td>
- </tr>
- <tr>
- <td>Firmware Version</td>
- <td>
- <xsl:value-of select="test_definition/environment/@firmware_version" />
- </td>
- </tr>
- <tr>
- <td>Screen Size</td>
- <td>
- <xsl:value-of select="test_definition/environment/@screen_size" />
- </td>
- </tr>
- <tr>
- <td>Resolution</td>
- <td>
- <xsl:value-of select="test_definition/environment/@resolution" />
- </td>
- </tr>
- <tr>
- <td>Host Info</td>
- <td>
- <xsl:value-of select="test_definition/environment/@host" />
- </td>
- </tr>
- <tr>
- <td>Others</td>
- <td>
- <xsl:value-of select="test_definition/environment/other" />
- </td>
- </tr>
- </table>
- </div>
+ <body>
+ <div id="testcasepage">
+ <div id="title">
+ <table>
+ <tr>
+ <td>
+ <h1>Test Report</h1>
+ </td>
+ </tr>
+ </table>
+ </div>
+ <div id="device">
+ <table>
+ <tr>
+ <th colspan="2">Device Information</th>
+ </tr>
+ <tr>
+ <td>Device Name</td>
+ <td>
+ <xsl:value-of select="test_definition/environment/@device_name" />
+ </td>
+ </tr>
+ <tr>
+ <td>Device Model</td>
+ <td>
+ <xsl:value-of select="test_definition/environment/@device_model" />
+ </td>
+ </tr>
+ <tr>
+ <td>OS Version</td>
+ <td>
+ <xsl:value-of select="test_definition/environment/@os_version" />
+ </td>
+ </tr>
+ <tr>
+ <td>Device ID</td>
+ <td>
+ <xsl:value-of select="test_definition/environment/@device_id" />
+ </td>
+ </tr>
+ <tr>
+ <td>Firmware Version</td>
+ <td>
+ <xsl:value-of select="test_definition/environment/@firmware_version" />
+ </td>
+ </tr>
+ <tr>
+ <td>Screen Size</td>
+ <td>
+ <xsl:value-of select="test_definition/environment/@screen_size" />
+ </td>
+ </tr>
+ <tr>
+ <td>Resolution</td>
+ <td>
+ <xsl:value-of select="test_definition/environment/@resolution" />
+ </td>
+ </tr>
+ <tr>
+ <td>Host Info</td>
+ <td>
+ <xsl:value-of select="test_definition/environment/@host" />
+ </td>
+ </tr>
+ <tr>
+ <td>Others</td>
+ <td>
+ <xsl:value-of select="test_definition/environment/other" />
+ </td>
+ </tr>
+ </table>
+ </div>
- <div id="summary">
- <table>
- <tr>
- <th colspan="2">Test Summary</th>
- </tr>
- <tr>
- <td>Test Plan Name</td>
- <td>
- <xsl:value-of select="test_definition/summary/@test_plan_name" />
- </td>
- </tr>
- <tr>
- <td>Tests Total</td>
- <td>
- <xsl:value-of select="count(test_definition//suite/set/testcase)" />
- </td>
- </tr>
- <tr>
- <td>Test Passed</td>
- <td>
- <xsl:value-of
- select="count(test_definition//suite/set/testcase[@result = 'PASS'])" />
- </td>
- </tr>
- <tr>
- <td>Test Failed</td>
- <td>
- <xsl:value-of
- select="count(test_definition//suite/set/testcase[@result = 'FAIL'])" />
- </td>
- </tr>
- <tr>
- <td>Test N/A</td>
- <td>
- <xsl:value-of
- select="count(test_definition//suite/set/testcase[@result = 'BLOCK'])" />
- </td>
- </tr>
- <tr>
- <td>Test Not Run</td>
- <td>
- <xsl:value-of
- select="count(test_definition//suite/set/testcase) - count(test_definition//suite/set/testcase[@result = 'PASS']) - count(test_definition//suite/set/testcase[@result = 'FAIL']) - count(test_definition//suite/set/testcase[@result = 'BLOCK'])" />
- </td>
- </tr>
- <tr>
- <td>Start time</td>
- <td>
- <xsl:value-of select="test_definition/summary/start_at" />
- </td>
- </tr>
- <tr>
- <td>End time</td>
- <td>
- <xsl:value-of select="test_definition/summary/end_at" />
- </td>
- </tr>
- </table>
- </div>
+ <div id="summary">
+ <table>
+ <tr>
+ <th colspan="2">Test Summary</th>
+ </tr>
+ <tr>
+ <td>Test Plan Name</td>
+ <td>
+ <xsl:value-of select="test_definition/summary/@test_plan_name" />
+ </td>
+ </tr>
+ <tr>
+ <td>Tests Total</td>
+ <td>
+ <xsl:value-of select="count(test_definition//suite/set/testcase)" />
+ </td>
+ </tr>
+ <tr>
+ <td>Test Passed</td>
+ <td>
+ <xsl:value-of
+ select="count(test_definition//suite/set/testcase[@result = 'PASS'])" />
+ </td>
+ </tr>
+ <tr>
+ <td>Test Failed</td>
+ <td>
+ <xsl:value-of
+ select="count(test_definition//suite/set/testcase[@result = 'FAIL'])" />
+ </td>
+ </tr>
+ <tr>
+ <td>Test N/A</td>
+ <td>
+ <xsl:value-of
+ select="count(test_definition//suite/set/testcase[@result = 'BLOCK'])" />
+ </td>
+ </tr>
+ <tr>
+ <td>Test Not Run</td>
+ <td>
+ <xsl:value-of
+ select="count(test_definition//suite/set/testcase) - count(test_definition//suite/set/testcase[@result = 'PASS']) - count(test_definition//suite/set/testcase[@result = 'FAIL']) - count(test_definition//suite/set/testcase[@result = 'BLOCK'])" />
+ </td>
+ </tr>
+ <tr>
+ <td>Start time</td>
+ <td>
+ <xsl:value-of select="test_definition/summary/start_at" />
+ </td>
+ </tr>
+ <tr>
+ <td>End time</td>
+ <td>
+ <xsl:value-of select="test_definition/summary/end_at" />
+ </td>
+ </tr>
+ </table>
+ </div>
- <div id="suite_summary">
- <div id="title">
- <table>
- <tr>
- <td class="title">
- <h1>Test Summary by Suite</h1>
- </td>
- </tr>
- </table>
- </div>
- <table>
- <tr>
- <th>Suite</th>
- <th>Passed</th>
- <th>Failed</th>
- <th>N/A</th>
- <th>Not Run</th>
- <th>Total</th>
- </tr>
- <xsl:for-each select="test_definition/suite">
- <xsl:sort select="@name" />
- <tr>
- <td>
- <xsl:value-of select="@name" />
- </td>
- <td>
- <xsl:value-of select="count(set//testcase[@result = 'PASS'])" />
- </td>
- <td>
- <xsl:value-of select="count(set//testcase[@result = 'FAIL'])" />
- </td>
- <td>
- <xsl:value-of select="count(set//testcase[@result = 'BLOCK'])" />
- </td>
- <td>
- <xsl:value-of
- select="count(set//testcase) - count(set//testcase[@result = 'PASS']) - count(set//testcase[@result = 'FAIL']) - count(set//testcase[@result = 'BLOCK'])" />
- </td>
- <td>
- <xsl:value-of select="count(set//testcase)" />
- </td>
- </tr>
- </xsl:for-each>
- </table>
- </div>
+ <div id="suite_summary">
+ <div id="title">
+ <table>
+ <tr>
+ <td class="title">
+ <h1>Test Summary by Suite</h1>
+ </td>
+ </tr>
+ </table>
+ </div>
+ <table>
+ <tr>
+ <th>Suite</th>
+ <th>Passed</th>
+ <th>Failed</th>
+ <th>N/A</th>
+ <th>Not Run</th>
+ <th>Total</th>
+ </tr>
+ <xsl:for-each select="test_definition/suite">
+ <xsl:sort select="@name" />
+ <tr>
+ <td>
+ <xsl:value-of select="@name" />
+ </td>
+ <td>
+ <xsl:value-of select="count(set//testcase[@result = 'PASS'])" />
+ </td>
+ <td>
+ <xsl:value-of select="count(set//testcase[@result = 'FAIL'])" />
+ </td>
+ <td>
+ <xsl:value-of select="count(set//testcase[@result = 'BLOCK'])" />
+ </td>
+ <td>
+ <xsl:value-of
+ select="count(set//testcase) - count(set//testcase[@result = 'PASS']) - count(set//testcase[@result = 'FAIL']) - count(set//testcase[@result = 'BLOCK'])" />
+ </td>
+ <td>
+ <xsl:value-of select="count(set//testcase)" />
+ </td>
+ </tr>
+ </xsl:for-each>
+ </table>
+ </div>
- <div id="cases">
- <div id="title">
- <table>
- <tr>
- <td class="title">
- <h1 align="center">Detailed Test Results</h1>
- </td>
- </tr>
- </table>
- </div>
- <xsl:for-each select="test_definition/suite">
- <xsl:sort select="@name" />
- <p>
- Test Suite:
- <xsl:value-of select="@name" />
- </p>
- <table>
- <tr>
- <th>Case_ID</th>
- <th>Purpose</th>
- <th>Result</th>
- <th>Stdout</th>
- </tr>
- <xsl:for-each select=".//set">
- <xsl:sort select="@name" />
- <tr>
- <td colspan="4">
- Test Set:
- <xsl:value-of select="@name" />
- </td>
- </tr>
- <xsl:for-each select=".//testcase">
- <xsl:sort select="@id" />
- <tr>
- <td>
- <xsl:value-of select="@id" />
- </td>
- <td>
- <xsl:value-of select="@purpose" />
- </td>
+ <div id="cases">
+ <div id="title">
+ <table>
+ <tr>
+ <td class="title">
+ <h1 align="center">Detailed Test Results</h1>
+ </td>
+ </tr>
+ </table>
+ </div>
+ <xsl:for-each select="test_definition/suite">
+ <xsl:sort select="@name" />
+ <p>
+ Test Suite:
+ <xsl:value-of select="@name" />
+ </p>
+ <table>
+ <tr>
+ <th>Case_ID</th>
+ <th>Purpose</th>
+ <th>Result</th>
+ <th>Stdout</th>
+ </tr>
+ <xsl:for-each select=".//set">
+ <xsl:sort select="@name" />
+ <tr>
+ <td colspan="4">
+ Test Set:
+ <xsl:value-of select="@name" />
+ </td>
+ </tr>
+ <xsl:for-each select=".//testcase">
+ <xsl:sort select="@id" />
+ <tr>
+ <td>
+ <xsl:value-of select="@id" />
+ </td>
+ <td>
+ <xsl:value-of select="@purpose" />
+ </td>
- <xsl:choose>
- <xsl:when test="@result">
- <xsl:if test="@result = 'FAIL'">
- <td class="red_rate">
- <xsl:value-of select="@result" />
- </td>
- </xsl:if>
- <xsl:if test="@result = 'PASS'">
- <td class="green_rate">
- <xsl:value-of select="@result" />
- </td>
- </xsl:if>
- <xsl:if test="@result = 'BLOCK' ">
- <td>
- BLOCK
- </td>
- </xsl:if>
- </xsl:when>
- <xsl:otherwise>
- <td>
+ <xsl:choose>
+ <xsl:when test="@result">
+ <xsl:if test="@result = 'FAIL'">
+ <td class="red_rate">
+ <xsl:value-of select="@result" />
+ </td>
+ </xsl:if>
+ <xsl:if test="@result = 'PASS'">
+ <td class="green_rate">
+ <xsl:value-of select="@result" />
+ </td>
+ </xsl:if>
+ <xsl:if test="@result = 'BLOCK' ">
+ <td>
+ BLOCK
+ </td>
+ </xsl:if>
+ </xsl:when>
+ <xsl:otherwise>
+ <td>
- </td>
- </xsl:otherwise>
- </xsl:choose>
- <td>
- <xsl:value-of select=".//result_info/stdout" />
- <xsl:if test=".//result_info/stdout = ''">
- N/A
- </xsl:if>
- </td>
- </tr>
- </xsl:for-each>
- </xsl:for-each>
- </table>
- </xsl:for-each>
- </div>
- </div>
- </body>
- </html>
- </xsl:template>
+ </td>
+ </xsl:otherwise>
+ </xsl:choose>
+ <td>
+ <xsl:value-of select=".//result_info/stdout" />
+ <xsl:if test=".//result_info/stdout = ''">
+ N/A
+ </xsl:if>
+ </td>
+ </tr>
+ </xsl:for-each>
+ </xsl:for-each>
+ </table>
+ </xsl:for-each>
+ </div>
+ </div>
+ </body>
+ </html>
+ </xsl:template>
</xsl:stylesheet>
\ No newline at end of file
@charset "UTF-8";
/* CSS Document */
-#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td {
- border: 0;
- font-family: arial;
- font-size: 0.96em;
- font-style: inherit;
- font-weight: inherit;
- padding: 0;
- margin: 0;
- vertical-align: baseline;
+#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td
+ {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-weight: inherit;
+ font-style: inherit;
+ font-size: 0.96em;
+ font-family: arial;
+ vertical-align: baseline;
}
#testcasepage p {
- text-align: left;
+ text-align: left;
}
#testcasepage table {
- border-collapse: separate;
- border-spacing: 0;
- margin-bottom: 1.4em;
- vertical-align: middle;
+ border-collapse: separate;
+ border-spacing: 0;
+ margin-bottom: 1.4em;
+ vertical-align: middle;
}
#testcasepage th,#testcasepage td {
- font-weight: normal;
- padding: 4px 10px 4px 5px;
- text-align: left;
- vertical-align: middle;
+ text-align: left;
+ font-weight: normal;
+ padding: 4px 10px 4px 5px;
+ vertical-align: middle;
}
#cases table {
- width: 101%;
+ width: 101%;
}
#title table {
- width: 101%;
+ width: 101%;
}
#device table {
- width: 50%;
+ width: 50%;
}
#summary table {
- width: 50%;
+ width: 50%;
}
#testcasepage th {
- background-color: #AAAAAA;
- border-bottom: 1px solid #000;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- color: #000;
- font-weight: bold;
- vertical-align: bottom;
+ border-bottom: 1px solid #000;
+ background-color: #AAAAAA;
+ border-left: 1px solid #000;
+ border-top: 1px solid #000;
+ color: #000;
+ font-weight: bold;
+ vertical-align: bottom;
}
#testcasepage th:last-child, #testcasepage td:last-child {
- border-right: 1px solid #000;
+ border-right: 1px solid #000;
}
#testcasepage td {
- border-bottom: 1px solid;
- border-left: 1px solid;
- font-weight: normal;
+ border-left: 1px solid;
+ font-weight: normal;
+ border-bottom: 1px solid;
}
#testcasepage td.yellow_rate {
- background-color: #ffcc00;
+ background-color: #ffcc00;
}
#testcasepage td.green_rate {
- background-color: #33cc33;
+ background-color: #33cc33;
}
#testcasepage td.dgreen_rate {
- background-color: #339933;
+ background-color: #339933;
}
#testcasepage td.red_rate {
- background-color: #FF3333;
+ background-color: #FF3333;
}
#title table, #title tr, #title td {
- border-bottom: none;
- border-left: none;
- text-align: center;
+ border-left: none;
+ border-bottom: none;
+ text-align: center;
}
#title td:last-child {
- border-right: none;
+ border-right: none;
}
#testcasepage h1 {
- color: #000;
- font-family: Arial, sans-serif;
- font-size: 2em;
- font-weight: bold;
- line-height: 1;
- margin-bottom: 0.75em;
- padding-top: 0.25em;
-}
+ font-size: 2em;
+ font-family: Arial, sans-serif; font-weight : bold;
+ line-height: 1;
+ color: #000;
+ margin-bottom: 0.75em;
+ padding-top: 0.25em;
+ font-weight: bold;
+}
\ No newline at end of file
@charset "UTF-8";
/* CSS Document */
-#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td {
- border: 0;
- font-family: arial;
- font-size: 0.96em;
- font-style: inherit;
- font-weight: inherit;
- padding: 0;
- margin: 0;
- vertical-align: baseline;
+#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td
+ {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-weight: inherit;
+ font-style: inherit;
+ font-size: 0.96em;
+ font-family: arial;
+ vertical-align: baseline;
}
#testcasepage p {
- text-align: left;
+ text-align: left;
}
#testcasepage table {
- border-collapse: separate;
- border-spacing: 0;
- margin-bottom: 1.4em;
- vertical-align: middle;
+ border-collapse: separate;
+ border-spacing: 0;
+ margin-bottom: 1.4em;
+ vertical-align: middle;
}
#testcasepage th,#testcasepage td {
- font-weight: normal;
- padding: 4px 10px 4px 5px;
- text-align: left;
- vertical-align: middle;
+ text-align: left;
+ font-weight: normal;
+ padding: 4px 10px 4px 5px;
+ vertical-align: middle;
}
#cases table {
- width: 101%;
+ width: 101%;
}
#title table {
- width: 101%;
+ width: 101%;
}
#device table {
- width: 50%;
+ width: 50%;
}
#summary table {
- width: 50%;
+ width: 50%;
}
#testcasepage th {
- background-color: #AAAAAA;
- border-bottom: 1px solid #000;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- color: #000;
- font-weight: bold;
- vertical-align: bottom;
+ border-bottom: 1px solid #000;
+ background-color: #AAAAAA;
+ border-left: 1px solid #000;
+ border-top: 1px solid #000;
+ color: #000;
+ font-weight: bold;
+ vertical-align: bottom;
}
#testcasepage th:last-child, #testcasepage td:last-child {
- border-right: 1px solid #000;
+ border-right: 1px solid #000;
}
#testcasepage td {
- border-bottom: 1px solid;
- border-left: 1px solid;
- font-weight: normal;
+ border-left: 1px solid;
+ font-weight: normal;
+ border-bottom: 1px solid;
}
#testcasepage td.yellow_rate {
- background-color: #ffcc00;
+ background-color: #ffcc00;
}
#testcasepage td.green_rate {
- background-color: #33cc33;
+ background-color: #33cc33;
}
#testcasepage td.dgreen_rate {
- background-color: #339933;
+ background-color: #339933;
}
#testcasepage td.red_rate {
- background-color: #FF3333;
+ background-color: #FF3333;
}
#title table, #title tr, #title td {
- border-bottom: none;
- border-left: none;
- text-align: center;
+ border-left: none;
+ border-bottom: none;
+ text-align: center;
}
#title td:last-child {
- border-right: none;
+ border-right: none;
}
#testcasepage h1 {
- color: #000;
- font-family: Arial, sans-serif;
- font-size: 2em;
- font-weight: bold;
- line-height: 1;
- margin-bottom: 0.75em;
- padding-top: 0.25em;
-}
+ font-size: 2em;
+ font-family: Arial, sans-serif; font-weight : bold;
+ line-height: 1;
+ color: #000;
+ margin-bottom: 0.75em;
+ padding-top: 0.25em;
+ font-weight: bold;
+}
\ No newline at end of file
@charset "UTF-8";
/* CSS Document */
-#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td {
- border: 0;
- font-family: arial;
- font-size: 0.96em;
- font-style: inherit;
- font-weight: inherit;
- padding: 0;
- margin: 0;
- vertical-align: baseline;
+#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td
+ {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-weight: inherit;
+ font-style: inherit;
+ font-size: 0.96em;
+ font-family: arial;
+ vertical-align: baseline;
}
#testcasepage p {
- text-align: left;
+ text-align: left;
}
#testcasepage table {
- border-collapse: separate;
- border-spacing: 0;
- margin-bottom: 1.4em;
- vertical-align: middle;
+ border-collapse: separate;
+ border-spacing: 0;
+ margin-bottom: 1.4em;
+ vertical-align: middle;
}
#testcasepage th,#testcasepage td {
- font-weight: normal;
- padding: 4px 10px 4px 5px;
- text-align: left;
- vertical-align: middle;
+ text-align: left;
+ font-weight: normal;
+ padding: 4px 10px 4px 5px;
+ vertical-align: middle;
}
#cases table {
- width: 101%;
+ width: 101%;
}
#title table {
- width: 101%;
+ width: 101%;
}
#device table {
- width: 50%;
+ width: 50%;
}
#summary table {
- width: 50%;
+ width: 50%;
}
#testcasepage th {
- background-color: #AAAAAA;
- border-bottom: 1px solid #000;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- color: #000;
- font-weight: bold;
- vertical-align: bottom;
+ border-bottom: 1px solid #000;
+ background-color: #AAAAAA;
+ border-left: 1px solid #000;
+ border-top: 1px solid #000;
+ color: #000;
+ font-weight: bold;
+ vertical-align: bottom;
}
#testcasepage th:last-child, #testcasepage td:last-child {
- border-right: 1px solid #000;
+ border-right: 1px solid #000;
}
#testcasepage td {
- border-bottom: 1px solid;
- border-left: 1px solid;
- font-weight: normal;
+ border-left: 1px solid;
+ font-weight: normal;
+ border-bottom: 1px solid;
}
#testcasepage td.yellow_rate {
- background-color: #ffcc00;
+ background-color: #ffcc00;
}
#testcasepage td.green_rate {
- background-color: #33cc33;
+ background-color: #33cc33;
}
#testcasepage td.dgreen_rate {
- background-color: #339933;
+ background-color: #339933;
}
#testcasepage td.red_rate {
- background-color: #FF3333;
+ background-color: #FF3333;
}
#title table, #title tr, #title td {
- border-bottom: none;
- border-left: none;
- text-align: center;
+ border-left: none;
+ border-bottom: none;
+ text-align: center;
}
#title td:last-child {
- border-right: none;
+ border-right: none;
}
#testcasepage h1 {
- color: #000;
- font-family: Arial, sans-serif;
- font-size: 2em;
- font-weight: bold;
- line-height: 1;
- margin-bottom: 0.75em;
- padding-top: 0.25em;
-}
+ font-size: 2em;
+ font-family: Arial, sans-serif; font-weight : bold;
+ line-height: 1;
+ color: #000;
+ margin-bottom: 0.75em;
+ padding-top: 0.25em;
+ font-weight: bold;
+}
\ No newline at end of file
@charset "UTF-8";
/* CSS Document */
-#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td {
- border: 0;
- font-family: arial;
- font-size: 0.96em;
- font-style: inherit;
- font-weight: inherit;
- padding: 0;
- margin: 0;
- vertical-align: baseline;
+#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td
+ {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-weight: inherit;
+ font-style: inherit;
+ font-size: 0.96em;
+ font-family: arial;
+ vertical-align: baseline;
}
#testcasepage p {
- text-align: left;
+ text-align: left;
}
#testcasepage table {
- border-collapse: separate;
- border-spacing: 0;
- margin-bottom: 1.4em;
- vertical-align: middle;
+ border-collapse: separate;
+ border-spacing: 0;
+ margin-bottom: 1.4em;
+ vertical-align: middle;
}
#testcasepage th,#testcasepage td {
- font-weight: normal;
- padding: 4px 10px 4px 5px;
- text-align: left;
- vertical-align: middle;
+ text-align: left;
+ font-weight: normal;
+ padding: 4px 10px 4px 5px;
+ vertical-align: middle;
}
#cases table {
- width: 101%;
+ width: 101%;
}
#title table {
- width: 101%;
+ width: 101%;
}
#device table {
- width: 50%;
+ width: 50%;
}
#summary table {
- width: 50%;
+ width: 50%;
}
#testcasepage th {
- background-color: #AAAAAA;
- border-bottom: 1px solid #000;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- color: #000;
- font-weight: bold;
- vertical-align: bottom;
+ border-bottom: 1px solid #000;
+ background-color: #AAAAAA;
+ border-left: 1px solid #000;
+ border-top: 1px solid #000;
+ color: #000;
+ font-weight: bold;
+ vertical-align: bottom;
}
#testcasepage th:last-child, #testcasepage td:last-child {
- border-right: 1px solid #000;
+ border-right: 1px solid #000;
}
#testcasepage td {
- border-bottom: 1px solid;
- border-left: 1px solid;
- font-weight: normal;
+ border-left: 1px solid;
+ font-weight: normal;
+ border-bottom: 1px solid;
}
#testcasepage td.yellow_rate {
- background-color: #ffcc00;
+ background-color: #ffcc00;
}
#testcasepage td.green_rate {
- background-color: #33cc33;
+ background-color: #33cc33;
}
#testcasepage td.dgreen_rate {
- background-color: #339933;
+ background-color: #339933;
}
#testcasepage td.red_rate {
- background-color: #FF3333;
+ background-color: #FF3333;
}
#title table, #title tr, #title td {
- border-bottom: none;
- border-left: none;
- text-align: center;
+ border-left: none;
+ border-bottom: none;
+ text-align: center;
}
#title td:last-child {
- border-right: none;
+ border-right: none;
}
#testcasepage h1 {
- color: #000;
- font-family: Arial, sans-serif;
- font-size: 2em;
- font-weight: bold;
- line-height: 1;
- margin-bottom: 0.75em;
- padding-top: 0.25em;
-}
+ font-size: 2em;
+ font-family: Arial, sans-serif; font-weight : bold;
+ line-height: 1;
+ color: #000;
+ margin-bottom: 0.75em;
+ padding-top: 0.25em;
+ font-weight: bold;
+}
\ No newline at end of file
@charset "UTF-8";
/* CSS Document */
-#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td {
- border: 0;
- font-family: arial;
- font-size: 0.96em;
- font-style: inherit;
- font-weight: inherit;
- padding: 0;
- margin: 0;
- vertical-align: baseline;
+#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td
+ {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-weight: inherit;
+ font-style: inherit;
+ font-size: 0.96em;
+ font-family: arial;
+ vertical-align: baseline;
}
#testcasepage p {
- text-align: left;
+ text-align: left;
}
#testcasepage table {
- border-collapse: separate;
- border-spacing: 0;
- margin-bottom: 1.4em;
- vertical-align: middle;
+ border-collapse: separate;
+ border-spacing: 0;
+ margin-bottom: 1.4em;
+ vertical-align: middle;
}
#testcasepage th,#testcasepage td {
- font-weight: normal;
- padding: 4px 10px 4px 5px;
- text-align: left;
- vertical-align: middle;
+ text-align: left;
+ font-weight: normal;
+ padding: 4px 10px 4px 5px;
+ vertical-align: middle;
}
#cases table {
- width: 101%;
+ width: 101%;
}
#title table {
- width: 101%;
+ width: 101%;
}
#device table {
- width: 50%;
+ width: 50%;
}
#summary table {
- width: 50%;
+ width: 50%;
}
#testcasepage th {
- background-color: #AAAAAA;
- border-bottom: 1px solid #000;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- color: #000;
- font-weight: bold;
- vertical-align: bottom;
+ border-bottom: 1px solid #000;
+ background-color: #AAAAAA;
+ border-left: 1px solid #000;
+ border-top: 1px solid #000;
+ color: #000;
+ font-weight: bold;
+ vertical-align: bottom;
}
#testcasepage th:last-child, #testcasepage td:last-child {
- border-right: 1px solid #000;
+ border-right: 1px solid #000;
}
#testcasepage td {
- border-bottom: 1px solid;
- border-left: 1px solid;
- font-weight: normal;
+ border-left: 1px solid;
+ font-weight: normal;
+ border-bottom: 1px solid;
}
#testcasepage td.yellow_rate {
- background-color: #ffcc00;
+ background-color: #ffcc00;
}
#testcasepage td.green_rate {
- background-color: #33cc33;
+ background-color: #33cc33;
}
#testcasepage td.dgreen_rate {
- background-color: #339933;
+ background-color: #339933;
}
#testcasepage td.red_rate {
- background-color: #FF3333;
+ background-color: #FF3333;
}
#title table, #title tr, #title td {
- border-bottom: none;
- border-left: none;
- text-align: center;
+ border-left: none;
+ border-bottom: none;
+ text-align: center;
}
#title td:last-child {
- border-right: none;
+ border-right: none;
}
#testcasepage h1 {
- color: #000;
- font-family: Arial, sans-serif;
- font-size: 2em;
- font-weight: bold;
- line-height: 1;
- margin-bottom: 0.75em;
- padding-top: 0.25em;
-}
+ font-size: 2em;
+ font-family: Arial, sans-serif; font-weight : bold;
+ line-height: 1;
+ color: #000;
+ margin-bottom: 0.75em;
+ padding-top: 0.25em;
+ font-weight: bold;
+}
\ No newline at end of file
@charset "UTF-8";
/* CSS Document */
-#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td {
- border: 0;
- font-family: arial;
- font-size: 0.96em;
- font-style: inherit;
- font-weight: inherit;
- padding: 0;
- margin: 0;
- vertical-align: baseline;
+#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td
+ {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-weight: inherit;
+ font-style: inherit;
+ font-size: 0.96em;
+ font-family: arial;
+ vertical-align: baseline;
}
#testcasepage p {
- text-align: left;
+ text-align: left;
}
#testcasepage table {
- border-collapse: separate;
- border-spacing: 0;
- margin-bottom: 1.4em;
- vertical-align: middle;
+ border-collapse: separate;
+ border-spacing: 0;
+ margin-bottom: 1.4em;
+ vertical-align: middle;
}
#testcasepage th,#testcasepage td {
- font-weight: normal;
- padding: 4px 10px 4px 5px;
- text-align: left;
- vertical-align: middle;
+ text-align: left;
+ font-weight: normal;
+ padding: 4px 10px 4px 5px;
+ vertical-align: middle;
}
#cases table {
- width: 101%;
+ width: 101%;
}
#title table {
- width: 101%;
+ width: 101%;
}
#device table {
- width: 50%;
+ width: 50%;
}
#summary table {
- width: 50%;
+ width: 50%;
}
#testcasepage th {
- background-color: #AAAAAA;
- border-bottom: 1px solid #000;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- color: #000;
- font-weight: bold;
- vertical-align: bottom;
+ border-bottom: 1px solid #000;
+ background-color: #AAAAAA;
+ border-left: 1px solid #000;
+ border-top: 1px solid #000;
+ color: #000;
+ font-weight: bold;
+ vertical-align: bottom;
}
#testcasepage th:last-child, #testcasepage td:last-child {
- border-right: 1px solid #000;
+ border-right: 1px solid #000;
}
#testcasepage td {
- border-bottom: 1px solid;
- border-left: 1px solid;
- font-weight: normal;
+ border-left: 1px solid;
+ font-weight: normal;
+ border-bottom: 1px solid;
}
#testcasepage td.yellow_rate {
- background-color: #ffcc00;
+ background-color: #ffcc00;
}
#testcasepage td.green_rate {
- background-color: #33cc33;
+ background-color: #33cc33;
}
#testcasepage td.dgreen_rate {
- background-color: #339933;
+ background-color: #339933;
}
#testcasepage td.red_rate {
- background-color: #FF3333;
+ background-color: #FF3333;
}
#title table, #title tr, #title td {
- border-bottom: none;
- border-left: none;
- text-align: center;
+ border-left: none;
+ border-bottom: none;
+ text-align: center;
}
#title td:last-child {
- border-right: none;
+ border-right: none;
}
#testcasepage h1 {
- color: #000;
- font-family: Arial, sans-serif;
- font-size: 2em;
- font-weight: bold;
- line-height: 1;
- margin-bottom: 0.75em;
- padding-top: 0.25em;
-}
+ font-size: 2em;
+ font-family: Arial, sans-serif; font-weight : bold;
+ line-height: 1;
+ color: #000;
+ margin-bottom: 0.75em;
+ padding-top: 0.25em;
+ font-weight: bold;
+}
\ No newline at end of file
@charset "UTF-8";
/* CSS Document */
-#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td {
- border: 0;
- font-family: arial;
- font-size: 0.96em;
- font-style: inherit;
- font-weight: inherit;
- padding: 0;
- margin: 0;
- vertical-align: baseline;
+#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td
+ {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-weight: inherit;
+ font-style: inherit;
+ font-size: 0.96em;
+ font-family: arial;
+ vertical-align: baseline;
}
#testcasepage p {
- text-align: left;
+ text-align: left;
}
#testcasepage table {
- border-collapse: separate;
- border-spacing: 0;
- margin-bottom: 1.4em;
- vertical-align: middle;
+ border-collapse: separate;
+ border-spacing: 0;
+ margin-bottom: 1.4em;
+ vertical-align: middle;
}
#testcasepage th,#testcasepage td {
- font-weight: normal;
- padding: 4px 10px 4px 5px;
- text-align: left;
- vertical-align: middle;
+ text-align: left;
+ font-weight: normal;
+ padding: 4px 10px 4px 5px;
+ vertical-align: middle;
}
#cases table {
- width: 101%;
+ width: 101%;
}
#title table {
- width: 101%;
+ width: 101%;
}
#device table {
- width: 50%;
+ width: 50%;
}
#summary table {
- width: 50%;
+ width: 50%;
}
#testcasepage th {
- background-color: #AAAAAA;
- border-bottom: 1px solid #000;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- color: #000;
- font-weight: bold;
- vertical-align: bottom;
+ border-bottom: 1px solid #000;
+ background-color: #AAAAAA;
+ border-left: 1px solid #000;
+ border-top: 1px solid #000;
+ color: #000;
+ font-weight: bold;
+ vertical-align: bottom;
}
#testcasepage th:last-child, #testcasepage td:last-child {
- border-right: 1px solid #000;
+ border-right: 1px solid #000;
}
#testcasepage td {
- border-bottom: 1px solid;
- border-left: 1px solid;
- font-weight: normal;
+ border-left: 1px solid;
+ font-weight: normal;
+ border-bottom: 1px solid;
}
#testcasepage td.yellow_rate {
- background-color: #ffcc00;
+ background-color: #ffcc00;
}
#testcasepage td.green_rate {
- background-color: #33cc33;
+ background-color: #33cc33;
}
#testcasepage td.dgreen_rate {
- background-color: #339933;
+ background-color: #339933;
}
#testcasepage td.red_rate {
- background-color: #FF3333;
+ background-color: #FF3333;
}
#title table, #title tr, #title td {
- border-bottom: none;
- border-left: none;
- text-align: center;
+ border-left: none;
+ border-bottom: none;
+ text-align: center;
}
#title td:last-child {
- border-right: none;
+ border-right: none;
}
#testcasepage h1 {
- color: #000;
- font-family: Arial, sans-serif;
- font-size: 2em;
- font-weight: bold;
- line-height: 1;
- margin-bottom: 0.75em;
- padding-top: 0.25em;
-}
+ font-size: 2em;
+ font-family: Arial, sans-serif; font-weight : bold;
+ line-height: 1;
+ color: #000;
+ margin-bottom: 0.75em;
+ padding-top: 0.25em;
+ font-weight: bold;
+}
\ No newline at end of file
@charset "UTF-8";
/* CSS Document */
-#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td {
- border: 0;
- font-family: arial;
- font-size: 0.96em;
- font-style: inherit;
- font-weight: inherit;
- padding: 0;
- margin: 0;
- vertical-align: baseline;
+#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td
+ {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-weight: inherit;
+ font-style: inherit;
+ font-size: 0.96em;
+ font-family: arial;
+ vertical-align: baseline;
}
#testcasepage p {
- text-align: left;
+ text-align: left;
}
#testcasepage table {
- border-collapse: separate;
- border-spacing: 0;
- margin-bottom: 1.4em;
- vertical-align: middle;
+ border-collapse: separate;
+ border-spacing: 0;
+ margin-bottom: 1.4em;
+ vertical-align: middle;
}
#testcasepage th,#testcasepage td {
- font-weight: normal;
- padding: 4px 10px 4px 5px;
- text-align: left;
- vertical-align: middle;
+ text-align: left;
+ font-weight: normal;
+ padding: 4px 10px 4px 5px;
+ vertical-align: middle;
}
#cases table {
- width: 101%;
+ width: 101%;
}
#title table {
- width: 101%;
+ width: 101%;
}
#device table {
- width: 50%;
+ width: 50%;
}
#summary table {
- width: 50%;
+ width: 50%;
}
#testcasepage th {
- background-color: #AAAAAA;
- border-bottom: 1px solid #000;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- color: #000;
- font-weight: bold;
- vertical-align: bottom;
+ border-bottom: 1px solid #000;
+ background-color: #AAAAAA;
+ border-left: 1px solid #000;
+ border-top: 1px solid #000;
+ color: #000;
+ font-weight: bold;
+ vertical-align: bottom;
}
#testcasepage th:last-child, #testcasepage td:last-child {
- border-right: 1px solid #000;
+ border-right: 1px solid #000;
}
#testcasepage td {
- border-bottom: 1px solid;
- border-left: 1px solid;
- font-weight: normal;
+ border-left: 1px solid;
+ font-weight: normal;
+ border-bottom: 1px solid;
}
#testcasepage td.yellow_rate {
- background-color: #ffcc00;
+ background-color: #ffcc00;
}
#testcasepage td.green_rate {
- background-color: #33cc33;
+ background-color: #33cc33;
}
#testcasepage td.dgreen_rate {
- background-color: #339933;
+ background-color: #339933;
}
#testcasepage td.red_rate {
- background-color: #FF3333;
+ background-color: #FF3333;
}
#title table, #title tr, #title td {
- border-bottom: none;
- border-left: none;
- text-align: center;
+ border-left: none;
+ border-bottom: none;
+ text-align: center;
}
#title td:last-child {
- border-right: none;
+ border-right: none;
}
#testcasepage h1 {
- color: #000;
- font-family: Arial, sans-serif;
- font-size: 2em;
- font-weight: bold;
- line-height: 1;
- margin-bottom: 0.75em;
- padding-top: 0.25em;
-}
+ font-size: 2em;
+ font-family: Arial, sans-serif; font-weight : bold;
+ line-height: 1;
+ color: #000;
+ margin-bottom: 0.75em;
+ padding-top: 0.25em;
+ font-weight: bold;
+}
\ No newline at end of file
@charset "UTF-8";
/* CSS Document */
-#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td {
- border: 0;
- font-family: arial;
- font-size: 0.96em;
- font-style: inherit;
- font-weight: inherit;
- padding: 0;
- margin: 0;
- vertical-align: baseline;
+#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td
+ {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-weight: inherit;
+ font-style: inherit;
+ font-size: 0.96em;
+ font-family: arial;
+ vertical-align: baseline;
}
#testcasepage p {
- text-align: left;
+ text-align: left;
}
#testcasepage table {
- border-collapse: separate;
- border-spacing: 0;
- margin-bottom: 1.4em;
- vertical-align: middle;
+ border-collapse: separate;
+ border-spacing: 0;
+ margin-bottom: 1.4em;
+ vertical-align: middle;
}
#testcasepage th,#testcasepage td {
- font-weight: normal;
- padding: 4px 10px 4px 5px;
- text-align: left;
- vertical-align: middle;
+ text-align: left;
+ font-weight: normal;
+ padding: 4px 10px 4px 5px;
+ vertical-align: middle;
}
#cases table {
- width: 101%;
+ width: 101%;
}
#title table {
- width: 101%;
+ width: 101%;
}
#device table {
- width: 50%;
+ width: 50%;
}
#summary table {
- width: 50%;
+ width: 50%;
}
#testcasepage th {
- background-color: #AAAAAA;
- border-bottom: 1px solid #000;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- color: #000;
- font-weight: bold;
- vertical-align: bottom;
+ border-bottom: 1px solid #000;
+ background-color: #AAAAAA;
+ border-left: 1px solid #000;
+ border-top: 1px solid #000;
+ color: #000;
+ font-weight: bold;
+ vertical-align: bottom;
}
#testcasepage th:last-child, #testcasepage td:last-child {
- border-right: 1px solid #000;
+ border-right: 1px solid #000;
}
#testcasepage td {
- border-bottom: 1px solid;
- border-left: 1px solid;
- font-weight: normal;
+ border-left: 1px solid;
+ font-weight: normal;
+ border-bottom: 1px solid;
}
#testcasepage td.yellow_rate {
- background-color: #ffcc00;
+ background-color: #ffcc00;
}
#testcasepage td.green_rate {
- background-color: #33cc33;
+ background-color: #33cc33;
}
#testcasepage td.dgreen_rate {
- background-color: #339933;
+ background-color: #339933;
}
#testcasepage td.red_rate {
- background-color: #FF3333;
+ background-color: #FF3333;
}
#title table, #title tr, #title td {
- border-bottom: none;
- border-left: none;
- text-align: center;
+ border-left: none;
+ border-bottom: none;
+ text-align: center;
}
#title td:last-child {
- border-right: none;
+ border-right: none;
}
#testcasepage h1 {
- color: #000;
- font-family: Arial, sans-serif;
- font-size: 2em;
- font-weight: bold;
- line-height: 1;
- margin-bottom: 0.75em;
- padding-top: 0.25em;
-}
+ font-size: 2em;
+ font-family: Arial, sans-serif; font-weight : bold;
+ line-height: 1;
+ color: #000;
+ margin-bottom: 0.75em;
+ padding-top: 0.25em;
+ font-weight: bold;
+}
\ No newline at end of file
@charset "UTF-8";
/* CSS Document */
-#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td {
- border: 0;
- font-family: arial;
- font-size: 0.96em;
- font-style: inherit;
- font-weight: inherit;
- padding: 0;
- margin: 0;
- vertical-align: baseline;
+#testcasepage div,#testcasepage h1,#testcasepage p,#testcasepage table,#testcasepage tr,#testcasepage th,#testcasepage td
+ {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-weight: inherit;
+ font-style: inherit;
+ font-size: 0.96em;
+ font-family: arial;
+ vertical-align: baseline;
}
#testcasepage p {
- text-align: left;
+ text-align: left;
}
#testcasepage table {
- border-collapse: separate;
- border-spacing: 0;
- margin-bottom: 1.4em;
- vertical-align: middle;
+ border-collapse: separate;
+ border-spacing: 0;
+ margin-bottom: 1.4em;
+ vertical-align: middle;
}
#testcasepage th,#testcasepage td {
- font-weight: normal;
- padding: 4px 10px 4px 5px;
- text-align: left;
- vertical-align: middle;
+ text-align: left;
+ font-weight: normal;
+ padding: 4px 10px 4px 5px;
+ vertical-align: middle;
}
#cases table {
- width: 101%;
+ width: 101%;
}
#title table {
- width: 101%;
+ width: 101%;
}
#device table {
- width: 50%;
+ width: 50%;
}
#summary table {
- width: 50%;
+ width: 50%;
}
#testcasepage th {
- background-color: #AAAAAA;
- border-bottom: 1px solid #000;
- border-left: 1px solid #000;
- border-top: 1px solid #000;
- color: #000;
- font-weight: bold;
- vertical-align: bottom;
+ border-bottom: 1px solid #000;
+ background-color: #AAAAAA;
+ border-left: 1px solid #000;
+ border-top: 1px solid #000;
+ color: #000;
+ font-weight: bold;
+ vertical-align: bottom;
}
#testcasepage th:last-child, #testcasepage td:last-child {
- border-right: 1px solid #000;
+ border-right: 1px solid #000;
}
#testcasepage td {
- border-bottom: 1px solid;
- border-left: 1px solid;
- font-weight: normal;
+ border-left: 1px solid;
+ font-weight: normal;
+ border-bottom: 1px solid;
}
#testcasepage td.yellow_rate {
- background-color: #ffcc00;
+ background-color: #ffcc00;
}
#testcasepage td.green_rate {
- background-color: #33cc33;
+ background-color: #33cc33;
}
#testcasepage td.dgreen_rate {
- background-color: #339933;
+ background-color: #339933;
}
#testcasepage td.red_rate {
- background-color: #FF3333;
+ background-color: #FF3333;
}
#title table, #title tr, #title td {
- border-bottom: none;
- border-left: none;
- text-align: center;
+ border-left: none;
+ border-bottom: none;
+ text-align: center;
}
#title td:last-child {
- border-right: none;
+ border-right: none;
}
#testcasepage h1 {
- color: #000;
- font-family: Arial, sans-serif;
- font-size: 2em;
- font-weight: bold;
- line-height: 1;
- margin-bottom: 0.75em;
- padding-top: 0.25em;
-}
+ font-size: 2em;
+ font-family: Arial, sans-serif; font-weight : bold;
+ line-height: 1;
+ color: #000;
+ margin-bottom: 0.75em;
+ padding-top: 0.25em;
+ font-weight: bold;
+}
\ No newline at end of file