summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.page2
-rw-r--r--tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.php1
2 files changed, 2 insertions, 1 deletions
diff --git a/tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.page b/tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.page
index 6dd58d48..09ab2fbc 100644
--- a/tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.page
+++ b/tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.page
@@ -1,6 +1,6 @@
<com:TForm>
- <h1>PostLoading Test</h1>
+ <h1 id="heading">PostLoading Test</h1>
<com:TCallback ID="callback1" OnCallback="Page.callback1_requested" />
<com:TActivePanel ID="panel1" />
diff --git a/tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.php b/tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.php
index a8c409e7..1257b45b 100644
--- a/tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.php
+++ b/tests/FunctionalTests/active-controls/protected/pages/PostLoadingTest.php
@@ -38,6 +38,7 @@ class PostLoadingTest extends TPage
{
$this->panel1->getControls()->add('Result is '.$this->MyTextBox->getText());
$this->panel1->render($param->NewWriter);
+ $this->Page->CallbackClient->Highlight('heading');
}
}