Layout.cpp 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * This source file is part of RmlUi, the HTML/CSS Interface Middleware
  3. *
  4. * For the latest information, see http://github.com/mikke89/RmlUi
  5. *
  6. * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
  7. * Copyright (c) 2019-2023 The RmlUi Team, and contributors
  8. *
  9. * Permission is hereby granted, free of charge, to any person obtaining a copy
  10. * of this software and associated documentation files (the "Software"), to deal
  11. * in the Software without restriction, including without limitation the rights
  12. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  13. * copies of the Software, and to permit persons to whom the Software is
  14. * furnished to do so, subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice shall be included in
  17. * all copies or substantial portions of the Software.
  18. *
  19. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  22. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  23. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  24. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  25. * THE SOFTWARE.
  26. *
  27. */
  28. #include "../Common/TestsShell.h"
  29. #include <RmlUi/Core/Context.h>
  30. #include <RmlUi/Core/Core.h>
  31. #include <RmlUi/Core/Element.h>
  32. #include <RmlUi/Core/ElementDocument.h>
  33. #include <doctest.h>
  34. using namespace Rml;
  35. static const String document_layout_rml = R"(
  36. <rml>
  37. <head>
  38. <link type="text/rcss" href="/assets/rml.rcss"/>
  39. <style>
  40. body {
  41. width: 500px;
  42. height: 300px;
  43. top: 100px;
  44. left: 100px;
  45. border: 10px #fff;
  46. background-color: #ccc;
  47. }
  48. #relative {
  49. width: 100%;
  50. height: 25%;
  51. background-color: red;
  52. position: relative;
  53. top: 50%;
  54. }
  55. </style>
  56. </head>
  57. <body>
  58. <div id="relative"/>
  59. </body>
  60. </rml>
  61. )";
  62. static const String document_layout_rml_nested = R"(
  63. <rml>
  64. <head>
  65. <link type="text/rcss" href="/assets/rml.rcss"/>
  66. <style>
  67. body {
  68. width: 500px;
  69. height: 300px;
  70. top: 100px;
  71. left: 100px;
  72. border: 10px #fff;
  73. background-color: #ccc;
  74. }
  75. #parent {
  76. background-color: green;
  77. position: relative;
  78. top: 50%;
  79. }
  80. #relative {
  81. width: 100%;
  82. height: 25%;
  83. background-color: red;
  84. position: relative;
  85. top: 50%;
  86. }
  87. </style>
  88. </head>
  89. <body>
  90. <div id="parent">
  91. <div id="relative"/>
  92. </div>
  93. </body>
  94. </rml>
  95. )";
  96. TEST_CASE("Layout.Position.Relative")
  97. {
  98. Context* context = TestsShell::GetContext();
  99. REQUIRE(context);
  100. // Test that percentage positioning in 'position: relative' elements is correctly resolved during the first layout run, and
  101. // does not change during the next layout run. See issue: https://github.com/mikke89/RmlUi/issues/262
  102. for (auto&& rml_source : {document_layout_rml, document_layout_rml_nested})
  103. {
  104. ElementDocument* document = context->LoadDocumentFromMemory(rml_source);
  105. REQUIRE(document);
  106. document->Show();
  107. Element* element = document->GetElementById("relative");
  108. REQUIRE(element);
  109. TestsShell::RenderLoop();
  110. const float absolute_top = element->GetAbsoluteTop();
  111. CHECK(absolute_top >= 150.f);
  112. // This forces a new layout run but shouldn't make any difference to the rendered output.
  113. document->SetProperty("width", "500px");
  114. TestsShell::RenderLoop();
  115. CHECK(absolute_top == element->GetAbsoluteTop());
  116. document->SetProperty("width", "400px");
  117. TestsShell::RenderLoop();
  118. CHECK(absolute_top == element->GetAbsoluteTop());
  119. document->Close();
  120. }
  121. TestsShell::ShutdownShell();
  122. }